JS Show the spinner called “first”: jQuery(‘#Spinner-first’).fadeIn(); Hide the spinner called “first”: jQuery(‘#Spinner-first’).fadeOut(); Hide all spinners that start with an ID of “Spinner”: jQuery(‘[id^=Spinner]’).fadeOut(); That’s All Folks…
Use the :first-child or :last-child CSS Selectors The :first-child pseudo class means “if this element is the first child of its parent”. :last-child means “if this element is the last child of its parent”. Note that only element nodes (HTML tags) count, these pseudo-classes ignore text nodes. Click here for the original article on Quirksmode
Generally well-supported attribute selectors: input[type=radio] input[type^=ra] input[type$=io] input[type*=d] Element input with attribute type which contains a value that is equal to, begins with, ends with or contains a certain value. Other safe selectors are: Parent > child that has: p > span { font-weight: bold; } Preeceded by ~ element which is: span ~ span […]
In your stylesheet, use: [code]cursor: {value}[/code] Replace {value} with one of the following names (in bold): (Hover over each name in bold to see an example of the mouse pointer…) pointer – The hand icon usually used when hovering over an HTML link help – A question mark text – Shows the text-select (“I”-shape) icon […]