Hi all,

I'm developing a mobile safari target site, that I've designed with a
bottom menu.

I've set it with css with the following declaration:

#menu{
        position:fixed;
        bottom:-62px;
}

I'm using jquery to make the page hide the urlbar by default so that's
why of the -62px on the bottom attribute.

Everything is fine if the page doesn't have a scroll, if it has, the
bottom scroll up with the rest of the page.

I've tried to add some script to it, but it didn't help:

$(document).ready(function(){
        $(window).scroll(function () {
                 $('menu').css('bottom','-62px')
        });
});

Does anyone has any idea that can help me make the menu fixed at the
bottom ?

TIA
Marcelo Wolfgang

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to