[jQuery] script tag in HTML
How can I refer to multiple sources of javascript in my HTML.
For example if in my HTML I already have a line such as :
<script language="JavaScript" src="IPMS%20Library_files/frameset.js"
type="text/jscript">
</script>
Then I want to put in
<script language="JavaScript" src="H:\IPMS\Library Project
\jquery-1.3.2.min.js" type="text/jscript">
</script>
I have tried to change the type to be say type = "text\Myjscript"
and then the following;
<script language="JavaScript" type="text/Myjscript">
$(document).ready(function(){
$("a").click(function(event){
alert("Thanks for visiting!");
event.preventDefault();
});
})
<\script
But when I click on a link in my page I don't get the message "Thanks
for visiting".