[jQuery] Any jquery plugin to help in displaying popups (divs above everything)?

2009-05-11 Thread sandee...@adpsconsulting.com
I am having to display some popup divs (some divs which appear when user clicks something) in my project. Now, I am facing numerous issues relating to positioning of the divs, making the div appear over everything etc. etc. in different browsers. This has become a serious problem. I badly need a

[jQuery] Any jquery plugin to help in displaying popups (divs above everything)?

2009-05-11 Thread sandee...@adpsconsulting.com
I am having to display some popup divs (some divs which appear when user clicks something) in my project. Now, I am facing numerous issues relating to positioning of the divs, making the div appear over everything etc. etc. in different browsers. This has become a serious problem. I badly need a

[jQuery] Help me solve this IE6 design issue

2009-03-21 Thread sandee...@adpsconsulting.com
The problem in brief :- In simple words, I am not able to display a div over the input fields and labels on another div (). Details:- On clicking on a link I am displaying a popup like msg in a div. This popup should be above all other elements. But the same is not happening in IE6. Please give

[jQuery] Is jquery's position() function not browser independent?

2009-03-15 Thread sandee...@adpsconsulting.com
I wrote the following code - - var ref= $('span#timezone_edit').position(); ref_left = ref.left - 125; ref_top = ref.top - 45; //I want to display a div just over that span#timezone_edit var zonepickerBox = $('div#time_zone_picker'); $(zonepickerBox).css('display', 'block');