$(function() {
$("#submitbtn").click(function() {
$('#result').html('
').fadeIn();
var input_data = $('#wp_signup_form').serialize();
$.ajax({
type: "POST",
url: "",
data: input_data,
success: function(msg){
$('.loader').remove();
$('').html(msg).appendTo('div#result').hide().fadeIn('slow');
}
});
return false;
});
});