var JW = jQuery.noConflict(); JW(function() { JW( "#radio_payma" ).buttonset(); JW( "#radio_payma2" ).buttonset(); JW(document).on('click','.view_offer',function(e){ var checked_val = JW("#radio_payma :radio:checked").val(); var checked_val2 = JW("#radio_payma2 :radio:checked").val(); if ( checked_val == "voice" && checked_val2 == "yes" ) { window.location.href = "/en/mobile/monthly-plan/with-handset?voiceORdata=$voice"; } else if ( checked_val == "data" && checked_val2 == "yes" ) { window.location.href = "/en/mobile/monthly-plan/with-handset?voiceORdata=$data"; } else if ( checked_val == "unlimited" && checked_val2 == "yes" ) { window.location.href = "/en/mobile/monthly-plan/with-handset?voiceORdata=$unlimited"; } else if ( checked_val == "voice" && checked_val2 == "no" ) { window.location.href = "/en/mobile/monthly-plan/without-handset?voiceORdata=$voice"; } else if ( checked_val == "data" && checked_val2 == "no" ) { window.location.href = "/en/mobile/monthly-plan/without-handset?voiceORdata=$data"; } else if ( checked_val == "unlimited" && checked_val2 == "no" ) { window.location.href = "/en/mobile/monthly-plan/without-handset?voiceORdata=$unlimited"; } }); });