Answer: Element selector is used to select an element with a specific type.
for example :
<script language="javascript" type="text/javascript">
$("p").css("border", "5px solid green");
</script>
in this "P"(paragraph) is the element.
Asked In: While Learning |
Alert Moderator