Javascript questionsRhami Aboud·May 10, 2017 What does this code do: var el = $( "div#first, div.first, ol#items > [name$='first']" ) How can I rewrite this to make it work: var el = $( "div#myUniqueID$0$" ) , where the HTML is as follows: <div id=”myUniqueID$0$”>...</div> 13