ASP Scripts SRC Folder Not Working?
I can run this code fine using the Google URL for the SRC, but...
<
script
type
="text/javascript"
src
="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></
script
>
<
script
type
="text/javascript">
$(document).ready(
function
() {
$("#<%=lblStatus.ClientID %>").delay(1500).fadeTo("fast", 0.0);
});
</
script
>
I cannot run the same code if I swap-out this line of code:
<script type="text/javascript" src="/scripts/jquery-1.8.0.js"></script>
It gets better, I can easily access the .js file pasting this link in my browser:
Q. What gives?