Link to home
Start Free TrialLog in
Avatar of Janith Ariyathilake
Janith AriyathilakeFlag for Sri Lanka

asked on

Can I get explanation mentioned code below.

function myAjax() {
      $.ajax({
           type: "POST",
           url: 'json_processing.php',
           data:{action:'call_this'},
           success:function(html) {
             alert(html);
           }

      });
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial