CSS how return calling element?
css, jquery
Solution
Try this:
$('div#myid').selector;
Problem
It looks like a very simple questions, but I could not find anywhere, so: How do I return the caller element in Jquery? ``` $("div#myid").foo(); //I want to return exactly "div#myid" ``` Thanks