JS Studio – JavaScript IDE

  • Post last modified:January 20, 2012
  • Post category:Linux
  • Post author:

JS Studio is a Qt-based cross-platform IDE for developing JavaScript-based web applications.

Syntax highlighting
Code completion
Project management
Build system
Integration with common VCSs
Interface can be fully extended / modified by JavaScript addons

To install JS Studio on ubuntu 11.10

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal in the search field. And click Terminal.

2.Type the below code in terminal and hit enter.

(more…)

Continue ReadingJS Studio – JavaScript IDE

Using Google hosted javascript libraries

To use Google-hosted JavaScript libraries Just add this code to your functions.php file if( !is_admin()){ wp_deregister_script(’jquery’); wp_register_script(’jquery’, (”http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js”), false, ‘1.3.2?); wp_enqueue_script(’jquery’); } Now call your JavaScript file, after the wp_head function in header.php file. Here yourscrip=name of your javascript file.

Continue ReadingUsing Google hosted javascript libraries