Mac – make spotlight search faster
Mac spotlight search is one of the most frequently used tool on Mac. It searches various folders on Mac and shows results. Here are steps read more
HTML5 script async – how to load script asynchronously
HTML5 script async attribute can be used to load a script asynchronously. with async one can also use onload attribute to attach any javascript code read more
jQuery – get javascript object
jQuery when applied on a css selector, returns a wrapper object which contains 0 or more javascript objects. To get the javascript object from it, read more
CSS3 cursors – change cursor on an element
CSS property cursor specifies the type of mouse cursor to be displayed on the element. Example css cursor
CSS outline-width
CSS outline-width property specify the width of an element’s outline (2px, 2em, etc.). Example css outline-width
CSS outline-style
CSS outline-style property specify the line style of an element’s outline (solid, double, dashed, etc.). Example css outline-style
CSS outline-color
The outline-color property sets the color of the outline. Note that the outline-color value invert if not supported, then initial value of color is taken. read more
CSS outline – create outline around an element
CSS outline property can be used to create outlines around visual objects such as buttons, active form fields, image maps, etc. It it different from read more
jQuery – get checkbox value and checked state
jQuery can be used to access checkbox value using jQuery.attr(“value”) and it checked state using jQuery.prop(“checked”). Note that we can not use jQuery.attr() for checked read more
jQuery – find select element selectedIndex, value and text
jQuery code to access select element’s selected index, selected value and selected option node text.