HTML
<tr url="domain.com">
<td><input type="checkbox" name="checkbox[]" method="post" value="" class="checkbox" /> </td>
</tr>
JS
$("tr").not('.checkbox').click(function(){
window.location = $(this).attr("url");
});
Want to disable click function inside clickbox. But code above doesn't work: it redirects even when I click in checkbox. Where I did wrong?
.not(..– mgraph Feb 10 at 15:17data-syntax.<tr data-custom-url="http://domain.com">and access it as$("selector").data("custom-url");. By the way, if I'm not mistaken you must also indicate the protocol of the url. – Oybek Feb 10 at 15:17