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
Post a Comment