I am seeing some whack Javascript in a site I'm dealing with. There are many many references to $ and I cannot seem to find any place where this might have been defined as a legit variable:
e.g.,
$("#some_html_element_id").html('<p>A bunch of html</p>');
and this:
var all_relevant_items = $("#xyz_selector .style1");
all_relevant_items.filter("[attr!='" + this.prop + "']").each(function(){
$(this).activate("onDeactivate");
});
Anyone got any tips on how I might locate the definition of this mysterious object and shed some light on this? What the heck is this code doing?