On Thursday, August 30, 2012 10:44:51 PM UTC-4, Amit wrote:
>
> As I told you I have created my own custom html without extending
> layout.html.
"I have created my own custom html" != "I have not loaded jQuery"
:-)
> I am not sure how to load JQuery in that?
>
It's just a Javascript library, so can be loaded like any other Javascript
library.
To get it from Google's CDN:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"
></script>
or if you have the version included with web2py:
<script src="{{=URL('static', 'js/jquery.js')}}" type="text/javascript"
></script>
Anthony
--