How to include jquery.js

Well, I just updated our company site then suddenly i have a error on one of my scripts written in jquery after a time searching for this problem i've noticed that jquery.js was not loaded.



Solution for this is creating a script.js inside your theme directory. Suppose you have a custom theme we will name as "custom_theme". inside your custom_name folder create a script.js file this way drupal will load this file as well as jquery.js



you can dig more about this in drupal http://drupal.org/node/243134

How to add custom javascript file in drupal

Please visit my site http://www.arnelbornales.site90.net/content/how-to-add-custom-javascript-file-in-drupal ,there i put my code about this.

How to delete a folder/directory using cmd

Suppose you would like to delete a file or directory to ease some time.

let's start with locating our folder, our folder is inside My Documents we will name this deletethisfolder

open your cmd, then locate your folder.

Follow this path in your cmd

C:\Documents and Settings\admin> cd "My Documents"

Press Enter,

C:\Documents and Settings\admin\My Documents>rmdir /s /q

ex.

C:\Documents and Settings\admin\My Documents>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder"

or this:

C:\>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder"

That's it! your folder is now deleted!!!

If you want only a sub-folder under "deletethisfolder" directory let's say another_sub_directory

then we'll append the name of the sub directory/folder:

C:\Documents and Settings\admin\My Documents>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder\another_sub_directory"

Hope this Help you GUYS! stick around!!!

how to unzip/untar files with extensions .tar

using your terminal, locate the file where it is being placed.

Let's say you have a file file.tar located in your /usr/local/bin

just, type : tar xvf file.tar to unzip/untar the files inside file.tar

hope this helps you....

IE6 PNG-Fix

Please visit my site http://www.arnelbornales.site90.net/content/ie6-png-fix there i put my code about this.