HOME


sh-3ll 1.0
DIR:/chroot/home/laughingplants/laughingplants.com/html/
Upload File :
Current File : /chroot/home/laughingplants/laughingplants.com/html/search_js.php
<script>  
$("form select").on('change', function () 
 {  
    $.ajax({
		 url: 'all_ajax_file.php',
		 type: 'GET',
		 data:'plant_maintenance='+$("#chkveg").val()+"&plant_lighting="+$("#chkveg1").val()+"&plant_shade="+$("#chkveg2").val()+"&fourth_data="+$("#chkveg3").val(),
         dataType: 'html'
         })
    .done(function(data){
    	 $('#search_result').html(data);
    })
    .fail(function(){
        alert('Ajax Submit Failed ...'); 
       });
    
});
 </script>