
ricardoe
By: a guest on Mar 19th, 2009 | syntax:
HTML | size: 0.82 KB | hits: 90 | expires: Never
<!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">
<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);
}
});
});
<div id="go" style="width:200px; height:200px;" />