jquery ui – how to use google CDN [duplicate]
You can make the call using <link rel=”stylesheet” href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css” type=”text/css” media=”all” /> <script src=”http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.min.js” type=”text/javascript”></script> <script src=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js” type=”text/javascript”></script> You can also link to other Ui themes by changes the name of the theme. In This case change the name base to any other theme name /base/jquery-ui.css to any other theme. <link rel=”stylesheet” href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css” type=”text/css” media=”all” … Read more