/ Published in: JavaScript

Expand |
Embed | Plain Text
$(document).ready(function(){ colored(); }); function colored() { $("#reg").css("color","red"); setTimeout('colorgreen()', 800); } function colorgreen() { $("#reg").css("color","green"); setTimeout('colored()', 800); }
You need to login to post a comment.