- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Drag a text field into your form and give it an ID: e.g. txtField
In HTML code you wil get something like this:
<div class="widget uib_w_206 d-margins" data-uib="media/text" data-ver="0" id="txtField">
<div class="widget-container left-receptacle"></div>
<div class="widget-container right-receptacle"></div>
<div>
<p> </p>
</div>
</div>
With JQuery Code you can change the text like this:
var timer = 0;
setInterval(function() {
$("#txtField").text(timer++);
}, 1000);
P.S. Assuming you are working with JQuery
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page