Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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>
- <base href="http://localhost/" />
- <!--<base href="http://localhost/"></base>-->
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery.ajax({
- 'url': 'http://dev.jquery.com/view/trunk/plugins/color/jquery.color.js',
- 'cache': false,
- 'dataType': 'script',
- 'success': function(){
- $("#go").animate({backgroundColor:'pink'}, 1000).animate({backgroundColor:'blue'}, 1000);
- }
- });
- });
- </script>
- </head>
- <body>
- <div id="go" style="width:200px; height:200px;" />
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement