What is the correct way to specify jQuery files?
In <head> of template I have:
Code: Select all
<link rel="stylesheet" type="text/css" href="http://site.com.au/jquery.lightbox-0.5.css" media="screen" />
<__script__ type="text/javascript" src="http://site.com.au/jquery.js"></__script>
<__script__ type="text/javascript" src="http://site.com.au/jquery.lightbox-0.5.js"></__script>
<__script__ type="text/javascript">
$(function() {
$('#imagebox a').lightBox();
});
</__script>
Code: Select all
<link rel="stylesheet" type="text/css" href="http://site.com.au/modules/JQueryTools/jquery.lightbox-0.5.css" media="screen" />Thanks


