[jQuery] trigger click event of anchor endless recursion
jquery 1.3.1
jq("#miniCalendarTable td").hover(
function(){ jq(this).addClass("hover") },
function(){ jq(this).removeClass("hover") }
).click(function(){
jq(this).children("a").trigger("click");
});
this is my script.. i swear I have done this before but maybe not.
the hover works fine... but when the click function runs I get endless
recursion...
when i return the length of the children("a") it is 1
any ideas?