javascript - script source jquery understand , what if CDN is down , how to get path in Aptana -
javascript - script source jquery understand , what if CDN is down , how to get path in Aptana -
the below code not show alert 1 time page loaded.
if alter <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> works fine. using aptana plugin. think have give actual path in case don't want rely on cdn. how can find path of file locally. project construction listed below.
<!doctype html> <html> <head> <script type="text/javascript" src="jquery 1.6.4.js"></script> <script> $(document).ready(function() { alert("in ready"); }); </script> </head> <body> <a href="http://jquery.com/">jquery</a> </body> </html> javascript jquery eclipse aptana
Comments
Post a Comment