JQuery load php file excluding its echo -


i want load php files excluding echo output possible? code in loading php file this:

$(document).ready(function(){     $('#dropdownopt').change(function(){         var selectedvalue = $(this).val();         if (selectedvalue === "1"){             $("#leftdiv").load("iteratemonths.php");         }     }); }); 

but want load php file doesn't include it's echo output. , don't want comment out in main file. in advanced


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -