$(document).ready(function () {
$('input[type=checkbox]').click(function (e) {
var seasoning = '', tempArray = [];
$('input[name="Brand[]"]:checked').each(function(){
tempArray.push($(this).val());
})
if(tempArray.length !== 0){
seasoning+='&Brand='+tempArray.toString();
tempArray = [];
}
$('input[name="Origin[]"]:checked').each(function(){
tempArray.push($(this).val());
})
if(tempArray.length !== 0){
seasoning+='&Origin='+tempArray.toString();
}
window.location = "/example" + seasoning;
});
});
.
when i run above code, it appends brand name to url. when i select orign, the brand name disappears and origin name appends. i want brand name to still be there