jquery get element by tag code example
Example 1: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 2: jquery find
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );
Example 3: jquery get element by tag
$( "div" ).css( "border", "9px solid red" );