// JavaScript Document



function showAlert(){
    /*
    var frm=document.getElementById('frmStore');
    alert(frm);
    */

    var v=$('#store_name').val();
    alert(v);

    var e=$('#store_email').val();
    alert(e);
}


function showVal(p){
    alert('The value you selected is : '+ p);
}


function getServerTime(){
  
   $.get("http://localhost/wordpress/wp-admin/admin-ajax.php?action=getServerTime", function(data){
        alert("Data Loaded: " + data);
    });
   
}
