jQuery DIV click, with anchors - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T13:17:39Z http://stackoverflow.com/feeds/question/180211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/180211/jquery-div-click-with-anchors 3 jQuery DIV click, with anchors ANaimi 2008-10-07T20:19:40Z 2008-10-07T20:31:39Z <p>To make click-able divs, I do:</p> <pre><code>&lt;div class="clickable" url="http://google.com"&gt; blah blah &lt;/div&gt; </code></pre> <p>and then </p> <pre><code>$("div.clickable").click( function() { window.location = $(this).attr("url"); }); </code></pre> <p>I don't know if this is the best way, but it works perfectly with me, except for one issue: If the div contains a click-able element, such as &lt;a href="..."&gt;, and the user clicks on the hyperlink, both the hyperlink and div's-clickable are called</p> <p>This is especially a problem when the anchor tag is referring to a javascript AJAX function, which executes the AJAX function <em>AND</em> follows the link in the 'url' attribute of the div.</p> <p>Anyway around this?</p> http://stackoverflow.com/questions/180211/jquery-div-click-with-anchors/180246#180246 3 Answer by Sergey Ilinsky for jQuery DIV click, with anchors Sergey Ilinsky 2008-10-07T20:24:34Z 2008-10-07T20:24:34Z <p><code> $("div.clickable").click( function(event) { window.location = $(this).attr("url"); event.preventDefault(); }); </code></p> http://stackoverflow.com/questions/180211/jquery-div-click-with-anchors/180247#180247 0 Answer by Leanan for jQuery DIV click, with anchors Leanan 2008-10-07T20:24:36Z 2008-10-07T20:24:36Z <p>I know that if you were to change that to an href you'd do:</p> <pre> $("a#link1").click(function(event) { event.preventDefault(); $('div.link1').show(); //whatever else you want to do }); </pre> <p>so if you want to keep it with the div, I'd try </p> <pre> $("div.clickable").click(function(event) { event.preventDefault(); window.location = $(this).attr("url"); }); </pre> http://stackoverflow.com/questions/180211/jquery-div-click-with-anchors/180278#180278 9 Answer by Parand for jQuery DIV click, with anchors Parand 2008-10-07T20:31:39Z 2008-10-07T20:31:39Z <p>If you return "false" from your function it'll stop the event bubbling, so only your first event handler will get triggered (ie. your anchor will not see the click).</p> <pre><code>$("div.clickable").click( function() { window.location = $(this).attr("url"); return false; }); </code></pre>