jquery get element tag type code example
Example 1: jquery tag name
$('anything').prop("tagName")
Example 2: how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
$('anything').prop("tagName")
$( this ).find( 'li.target' ).css("border", "3px double red");