This is my original CSS for my #frame div.
....#frame{ position:relative; top:35px; }
Then, I use JQuery to change the CSS of my div...
$('#frame').css("position","absolute"); $('#frame').css("left",50);
Now, how do I clear all those changes, and revert back to normal?