Help for this page

Select Code to Download


  1. or download this
      success: function(res) {
        alert(res.msg);
      },
    
  2. or download this
      success: function(res) {
        \$('#result').text(res.msg);
      },
    
  3. or download this
    <body>
    <p id="result" >Time now is :</p>
    <input type="button" id="Submit" name="Submit" value="Submit"/>
    </body>