Finds the element with the id "myID.entry[1]". : Selector ID « jQuery « JavaScript DHTML






Finds the element with the id "myID.entry[1]".

 
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("#myID\\.entry\\[1\\]").css("border","3px solid red");

        });
    </script>
  </head>
  <body>
    <body>
            <div id="myID.entry[0]">id="myID.entry[0]"</div>
            <div id="myID.entry[1]">id="myID.entry[1]"</div>
            <div id="myID.entry[2]">id="myID.entry[2]"</div>

    </body>
</html>

   
  








Related examples in the same category

1.ID index selector
2.ID selector
3.ID selector only
4.Select by ID
5.Assign value to DIV with ID
6.Reference by tag name and id
7.Removes the element with the ID "selected" from the set of all paragraphs.
8.Finds the element with the id "myDiv".