jQuery DIV click, with anchors - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T13:17:39Zhttp://stackoverflow.com/feeds/question/180211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/180211/jquery-div-click-with-anchors3jQuery DIV click, with anchorsANaimi2008-10-07T20:19:40Z2008-10-07T20:31:39Z
<p>To make click-able divs, I do:</p>
<pre><code><div class="clickable" url="http://google.com">
blah blah
</div>
</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
<a href="...">, 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#1802463Answer by Sergey Ilinsky for jQuery DIV click, with anchorsSergey Ilinsky2008-10-07T20:24:34Z2008-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#1802470Answer by Leanan for jQuery DIV click, with anchorsLeanan2008-10-07T20:24:36Z2008-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#1802789Answer by Parand for jQuery DIV click, with anchorsParand2008-10-07T20:31:39Z2008-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>