Here is My Checkbox code. Checkbox value get: http://mydomainsss.com/men.html?band_colour=131
<span class="check-box">
<input type="checkbox" name="vehicle" class="filtercheckbox" value="<?php echo $this->urlEscape($_item->getUrl())?>" />
</span>
Here is my Jquery Code:
<script type="text/javascript">
jQuery('input[type=checkbox').click(function(){
window.location.hash = jQuery(this).val();
});
</script>
This code simple change URL
like http://mydomainsss.com/men.html#http://mydomainsss.com.com/men.html?band_colour=131
but I want to redirect
to http://mydomainsss.com/men.html?band_colour=131
without page reload
.
so can anyone help me?