So I\'ve got a pretty simple button that basically toggles a form on and off - we\'ll be using this on our site since we\'re doing an update and would like feedback availabl
How about this:
$(document).ready(function() { function changeText(){ $("#myDiv").text('test') } setTimeout(changeText, 2000); });