You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
381 B

$(document).ready(function(){
$("input:checkbox[name='europa'] ").click(function(){
if ($(this).is(':checked')){
$.get(
"/service/get_city/",
{'id': $(this).val()},
function(j){
console.log(j);
});
}
else{
console.log('false');
}
})
});