Hey there, having some issues passing parameter values in jQuery. I need a div to open a link that opens as a Shadowbox dialog .. (Shadowbox uses the rel tag) i therefore need to get the value of both the href and rel, but cant' figure it out. i tried to just add .attr("rel") to the string but that didnt work.
My jquery:
$("div.banner").click(function() {
window.location = $(this).find("a").attr("href"); return false; });
thank you!