Personally I'd just disable the select when the pop-up opens.
By adding a style to the select object so:


<select id="selectID">

.selectHide {display:none}


To hide it when opening the pop-up:
document.getElementById('selectID').className += " selectHide";


To show it again afterwards:
document.getElementById('selectID').className = 
document.getElementById('selectID').className.replace(" selectHide",'');



regards


Mike Foskett



-----Original Message-----
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On 
Behalf Of Oliver Boermans
Sent: 28 January 2010 09:01
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] How to resolve z-index problem for select box in IE 6

On 28 January 2010 17:32, Brajesh Patel <brajeshpate...@gmail.com> wrote:
> I am getting Z-index problem in IE 6.
> back ground select box are displaying on the popup when popup appear, it's
> working fine on the firefox but getting problem in IE 6,
> Please suggest solution this is major issue for  me.
>
Iframes are the accepted solution for covering select elements in IE 6.

JavaScript is recommended to prevent burdening newer browsers with the
fudgy mark-up.

Something like this makes it easier:
jquery.bgiframe docs [jquery plugin]
http://brandonaaron.net/jquery/plugins/bgiframe/docs/

[the above link it timing out for me right now - should be good though
- maybe worth trying tomorrow if it still doesn't work]

hth
Ollie


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************


This is a confidential email. Tesco may monitor and record all emails. The 
views expressed in this email are those of the sender and not Tesco.

Tesco Stores Limited
Company Number: 519500
Registered in England
Registered Office: Tesco House, Delamare Road, Cheshunt, Hertfordshire EN8 9SL
VAT Registration Number: GB 220 4302 31


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************

Reply via email to