Difference between revisions of "Javascript"

From Bashlinux
Jump to: navigation, search
 
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
  +
= Javascript =
  +
  +
== Javascript frameworks ==
 
# jQuery
 
# jQuery
 
# ExtJS
 
# ExtJS
  +
  +
== Debugging ==
  +
  +
* To print out objects, even the ones coming from PHP, use Firefox or Google Chrome and the add to the code:
  +
  +
<pre><nowiki>
  +
console.log(object)
  +
</nowiki></pre>
  +
  +
Useful to see object structure

Revision as of 02:22, 12 March 2011

Javascript

Javascript frameworks

  1. jQuery
  2. ExtJS

Debugging

  • To print out objects, even the ones coming from PHP, use Firefox or Google Chrome and the add to the code:
 console.log(object)
 
Useful to see object structure