Forum: JavaScript / DHTML / AJAX Nov 5th, 2009 |
| Replies: 3 Views: 415 the way you are using clearInterval is not correct.
its should be something like this:
var t;
//to start
t=setTimeout("someFunction()",1000);
//to stop
clearTimeout(t); |
Forum: JavaScript / DHTML / AJAX Oct 9th, 2009 |
| Replies: 2 Views: 339 i guess this would help you:
http://punbb.informer.com/forums/topic/17351/how-to-add-a-font-file-to-my-website/ |
Forum: JavaScript / DHTML / AJAX Feb 6th, 2008 |
| Replies: 4 Views: 5,133 hi
dont use innerHTML property with text box. its property of tag element like div.
use
document.getElementById('txtSMS').value="hiiiii";
or see an example;
<%@ Page Language="C#"... |