Hi All,
I have wrote small script to increase the box width using jQuery .animate() function, but it's not working
can anyone help?
Thanks...........in advanceCode:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script> <script type="text/javascript"> $("#animate").click(function() { alert(); $("#content").animate({"height": "80px"},"fast"); }); </script> <style type="text/css"> #content { background-color:#ffaa00; width:300px; height:30px; padding:3px; } </style> </head> <body> <input type="button" id="animate" value="Animate"/> <div id="content">Animate Height</div> </body> </html>



Reply With Quote

Bookmarks