jQuery Selectors


The following are the jQuery Selectors that may be used for the selection of the HTML DOM elements in a page using jQuery Selector  Example  Selects  * $("*") All elements #id $("#lastname") The element with .class $(".intro") All elements with element $("p") All <p> elements .class.class $(".intro.demo") All elements with and :first $("p:first") The first … Continue reading jQuery Selectors

jQuery DOM


The following are the list of the selectors and uses of them to modify the contents of the HTML DOM Tree using the jQuery framework. Manipulate  Description  $(selector).html(content)  Set the content (inner HTML) of selected elements  $(selector).text(text)  same as html(), but tags will be escaped  $(selector).attr(attr,value)  Set an attribute and value of selected elements  $(selector).val(value)  … Continue reading jQuery DOM

jQuery CSS


Here is the CSS properties that may be referrenced by the jQuery CSS Properties  Description  $(selector).css(name)  Get the style property value of the first selected element  $(selector).css(name,value)  Set the value of one style property for all selected elements  $(selector).css({properties})  Set multiple style properties for all selected elements  CSS Size     $(selector).height()  Get the pixel height … Continue reading jQuery CSS