Posts

Showing posts from August 10, 2009

Tips Using JQuery

While working with JQuery I could not get it work since I referenced the file as shown below   < script language ="javascript" src = "~/JavaScript/jquery-1.3.1.js ' type ="text/javascript"></ script >   The reason was that I was using a Master Page and hence I had to do the following to get it work   < script language ="javascript" src =' <% =ResolveUrl("~/JavaScript/jquery-1.3.1.js" ) %> ' type ="text/javascript"></ script >   Most of the example provide are without the use of Master Pages hence you never get the issue.   Hope this helps   Cheers!!!