I can't get some external jquery to work -


i hate ask simple questions these i've been working @ couple hours now.

i've checked common mistakes: i'm using .ready(), code call after jquery library has been loaded , i'm sure chrome console working "all" option enabled.

here's code, i'll using ajax, need jquery send message console:

html

<head>     <script src="../libraries/jquery-1.11.0.min.js"></script>     <script src="../libraries/jquery.validate.js"></script>     <script src="../libraries/validardatos.js"></script>     <script src="../libraries/registro.js"></script>     <script src="../libraries/bootstrap/js/bootstrap.min.js"></script>      <script src="../libraries/ajaxcall.js"></script> <!-- rebellious doc--> </head> 

jquery:

$(document).ready(function(){     console.log("hello world"); }); 

you can add jquery site getting google's cdn add jquery site without loading server add site in head:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 

hope helps

p.s. add code ajaxcall.js site


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -