Then just position it absolutely in CSS.
And do the click the same way.
Then $("div.whichever").show()
This will make it appear, and it will be positioned absolutely.
You can also do $("div.whichever").fadeIn("medium") if you want it to appear
gracefully.
Glen
On 6/27/07, PaulM <[EMAIL PROTECTED]> wrote:
yes, but I dont want a sliding anything. I want it to be layed on top
of the rest of the page.
I want it to cover 200px from the top and display a form that user can
close or submit.
On Jun 27, 9:00 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> $("a.toplink").toggle(
> function(){
> $("#myform").slideDown("slow");
> },
> function(){
> $("#myform").slideUp("slow");
> });
>
> Example.http://www.commadot.com/jquery/slideMenu/
>
> Lots of different ways to handle this. Each one is easy.
> The challenge is finding just the perfect effect for your site.
> Easing, speed, size, rounded corners, shadows, on top of content/push
down
> content.
>
> Have you checked out the website? Lots of great examples there
.http://www.jQuery.com
>
> Glen
>
> On 6/27/07, PaulM <[EMAIL PROTECTED]> wrote:
>
>
>
> > I would like to have a link at the top of my website that upon
> > clicking would show a form that can be clicked and using ajax
> > submitted to the server and than closed....
>
> > how can I do that with Jquery?