Personal tools

Difference between revisions of "Jquery"

From MohidWiki

Jump to: navigation, search
(New page: Jquery is a javascript library that adds functionality to standard xhtml. ==How it works== Simply insert the jquery library in the header of your html: <code lang="html"> <head> <!-- ...)
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Jquery]] is a javascript library that adds functionality to standard xhtml.
+
[[Jquery]] is a javascript library that adds functionality to standard xhtml. Its got a throng of extensions. They work more effectively on production web-sites after they were [[yui|yuicompressed]].
  
 
==How it works==
 
==How it works==
 
Simply insert the jquery library in the header of your html:
 
Simply insert the jquery library in the header of your html:
<code lang="html">
+
<htm><pre name="code" class="html">
<head>
+
&lt;HEAD&gt;
 
<!-- ... -->
 
<!-- ... -->
 
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
 
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
 
<!-- ... -->
 
<!-- ... -->
</head>
+
&lt;/HEAD&gt;
</code>
+
</pre></htm>
  
 
==External References==
 
==External References==

Latest revision as of 14:56, 30 July 2009

Jquery is a javascript library that adds functionality to standard xhtml. Its got a throng of extensions. They work more effectively on production web-sites after they were yuicompressed.

How it works

Simply insert the jquery library in the header of your html:

<HEAD>



</HEAD>

External References