What is the specific type elements to select elements in Jquery?

 Posted by Vivek.Ramapuram on 9/4/2014 | Category: jQuery Interview questions | Views: 1593 | Points: 40
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 

Comments or Responses

Login to post response