How can I make jQuery ajax post that connecting to a php file more faster? Could I enable some caching? Here are my codes
$.post("return.php",{"t": "editpost"},function(sResult)
{
switch($.trim(sResult))
{
case "success":
{
};break;
case "error":
{
};break;
}
});
add return false at the end of the function