Code:
<html> <head> <script src="jquery.js" type="text/javascript"></script> <script src="jquery.rating.js" type="text/javascript" language="javascript"></script> <link href="jquery.rating.css" type="text/css" rel="stylesheet"/> <link rel="stylesheet" type="text/css" href="style.css"> <script type="text/javascript"> $(document).ready(function() { $("#mobile_brand").change(function() { $.post("mobile_change.php",{ brand:$("#mobile_brand").val(),price:$("#property4").val(),type:$("#property3").val(),os:$("#property6").val() } ,function(data){ $("#change").html(data); }); }); $("#property3").change(function() { $.post("mobile_change.php",{ brand:$("#mobile_brand").val(),price:$("#property4").val(),type:$("#property3").val(),os:$("#property6").val() } ,function(data){ $("#change").html(data); }); }); $("#property4").change(function() { $.post("mobile_change.php",{ brand:$("#mobile_brand").val(),price:$("#property4").val(),type:$("#property3").val(),os:$("#property6").val() } ,function(data){ $("#change").html(data); }); }); $("#property6").change(function() { $.post("mobile_change.php",{ brand:$("#mobile_brand").val(),price:$("#property4").val(),type:$("#property3").val(),os:$("#property6").val() } ,function(data){ $("#change").html(data); }); }); }); </script> </head> <body>
Comment