get element jquery code example
Example 1: jquery get value of element
// Get the value from id thisElement
$("#thisElement"). val();
Example 2: how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
Example 3: jquery get all paragraphs
//Get all Paragraphs in the DOM using Jquery
$('p')