Is it possible to refresh a single div with jQuery? I have a button that does logout a user. After the button is clicked, I want to show the login form, so I need to re-pars
Use load()
$('#signup').load('php/logout.php', function() { alert('Logout.'); });