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

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -