Wednesday, September 1, 2010

Linux: To find a "text" in a "File"


Linux Command : To find a "text" in a "File"

find . -type f -iname "filename.txt" -exec grep -iaH "text" {} \;



Tuesday, May 4, 2010

To get hash '#' ID from URL using Javascript


To get hash '#' ID from URL


< script type="text/javascript" >
if( window.location.hash ) {
var str = window.location.hash;
var str_split = str.split("#");
var getid = str_split[1];
}

< /script >

Monday, January 18, 2010

jQuery 1.4 Released

jQuery 1.4 Released Download

Wednesday, January 13, 2010

jQuery UI Multiselect

Plugin: jQuery UI Multiselect

Features :

  • Search within available options, if there are a lots of them
  • Displaying counts of selected and available items
  • Select All / Deselect All Buttons
  • Dragging items from the available list to the selected list directly