Click here to Skip to main content
15,891,847 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have a application wherein there are two asp content and i need to add some jquery script file reference to it, how do i do it?
code is:
<script src="Scripts/jquery-1.3.2.min.js" type="text/javascript"></script>

Any help is appreciated

Thanks.
Posted

XML
<script type="text/javascript" src="../Scripts/jquery-1.3.2.min.js"></script>
 
Share this answer
 
Comments
gokulnath1 14-Nov-11 4:02am    
its still not working!! my question is where do i place that piece of code. if suppose i place that line in any of the asp content i get a error like "file not found" but the file is present there. please help
Prince Antony G 14-Nov-11 6:47am    
Place the Code inside the <head></head> tag

Add the file into ur application and specify the path into

src="<here specify="" the="" path="">"
Place it within the

HTML
<head> 
<script type="text/javascript" src="../Scripts/jquery-1.3.2.min.js"></script>

</head>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900