Can't get .get() or .post() to load next page.

Can't get .get() or .post() to load next page.

So what I thought was going to be really turns out to not be working for some reason.  I'm setting up a shell for my new site.  So I'm just trying to get some of my pages linked together for testing the site flow and feel.  I want to do this with javascript (jquery) because when I start passing session data that's how I'll be handling this.  

So I have this simple line in my js code... 
  1. $('#submit').click(function(){
            $.post("plans.html");
        });


When I debug it hits the $.post but the plans.html page never loads.  The current index.html page simply refreshes.  I tried to put an ajaxError handler but it doesn't return an error.  How the heck could this not work?

I'm sure its something dead simple that I'm overlooking...but can't think what it could be.

Using FF 3.6, and Jquery 1.4.2 from Jquery CDN.

Thanks
Bryce