-3
I would like to know what code or script to appear that famous phrase (Carrying...).
Can someone help me?
-3
I would like to know what code or script to appear that famous phrase (Carrying...).
Can someone help me?
1
can be done with ajax when loading requests
$('document').ready(function(){
$("#btn-login").click(function(){
var data = $("#login-form").serialize();
$.ajax({
type : 'POST',
url : '../php/seila.php',
data : data,
dataType: 'json',
beforeSend: function()
{
$("#btn-login").html('Carregando...'); <---
},
success : function(response){
}
});
});
});
Browser other questions tagged script
You are not signed in. Login or sign up in order to post.
at least specify the environment or language
– Daniel Omine