
Untitled
By: a guest on
Apr 26th, 2012 | syntax:
None | size: 1.01 KB | hits: 18 | expires: Never
onclick checkbox event
$(document).ready(function() {
var url = 'http://mysite.com/results.aspx';
$('.LocType').click (function ()
{
var thisCheck = $(this);
if (thischeck.is (':checked'))
{
// Do stuff
window.location.href = "http://www.yahoo.com";
}
});
});
<div class="MyOptions">
Hospitals<input class="LocType" type="checkbox" value="Hospital"/>  
Offices<input class="LocType" type="checkbox" value="Office"/>  
Facilities<input class="LocType" type="checkbox" value="Facility"/>
</div>
$('.LocType').click (function () {
if (this.checked) {
// Do stuff
window.location.href = "http://www.yahoo.com?paramNameHere=" + this.value;
}
});
$('.LocType').click (function (e) {
if (this.checked) {
// Do stuff
window.location.href = "http://www.yahoo.com" + e.target.value;
//e.target is the element that fire up the event
}
});