Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Putting Javascript source, then immediately the page not working

When I put the following code on my page.

<script type="text/javascript" src="../../Scripts/jquery-1.4.1.js" />

Then anything below will became nothing, can anyone tell me why?

Thanks alot.

Sorry, I am very new in web development.

Thanks

like image 949
PlayKid Avatar asked Jun 15 '10 13:06

PlayKid


1 Answers

Script tags are not allowed to be auto closed:

<script type="text/javascript" src="../../Scripts/jquery-1.4.1.js" ></script>
like image 142
VoltaicShock Avatar answered Sep 27 '22 22:09

VoltaicShock