How can I achieve this?
$(".my_selected .element").myCustomFunction();
or maybe even simply this?
$(".my_selected .element").???????(myCustomFunction());
Where the function will know that $(this) equals $(".my_selected .element").
Thank you!