Recent Posts
None | 5 sec ago
ActionScript 3 | 17 sec ago
ASM (NASM) | 39 sec ago
PAWN | 1 min ago
None | 2 min ago
None | 2 min ago
Per | 3 min ago
None | 3 min ago
None | 3 min ago
T-SQL | 3 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 9th of Feb 2010 07:02:04 PM
Download |
Raw |
Embed |
Report
jQuery(document).ready(function() {
jQuery("#resposta").ajaxStart(function(){ jQuery(this).html("Cadastro sendo enviada, por favor aguarde..."); });
jQuery('#submit').click(function() {
var nome = jQuery('#nome').val();
var email = jQuery('#email').val();
var senha = jQuery('#senha').val();
var plano = jQuery('#plano').val();
var cemail = jQuery('#cemail').val();
var csenha = jQuery('#csenha').val();
jQuery.post('cadastrar.php',
{ nome: nome, email: email, senha: senha, cemail: cemail, csenha: csenha, plano: plano, cadastro: true },
function(data, textStatus) {
jQuery('#resposta').html(data);
});
return false;
});
});
Submit a correction or amendment below.
Make A New Post