1.

Write code in jQuery to create back button

Answer»

Below is the code to go back to LAST visited page in the browser

< script TYPE="text/javascript"&GT;
$(FUNCTION()
{
$('#back').click(function() {
parent.history.back();
return FALSE;
});
});
< /script>



Discussion

No Comment Found