[jQuery] Re: creating and inserting a new element fails in IE7

2008-08-23 Thread deckard
Never mind. I found it. When setting a previously invisible form to show Safari seems to show contained elements too - unless its explicetly set hardcoded in HTML with a style attribute. On Aug 23, 11:22 am, deckard <[EMAIL PROTECTED]> wrote: > Hi! > > Thank you very much  - that already helped f

[jQuery] Re: creating and inserting a new element fails in IE7

2008-08-23 Thread deckard
Hi! Thank you very much - that already helped for the IE issue. This one drove me crazy! It works now flawlessly in IE7 and FF3 In Safari however there is another issue. The code is looping over all button elements in the html - I have two buttons in my page . in Safari for the second button the

[jQuery] Re: creating and inserting a new element fails in IE7

2008-08-22 Thread Dave Methvin
> In IE7 it seems to fail in line >         var c = $ > ('').insertAfter(this).addClass(this.className).attr('id',this.id > +'_r'); You might want to try ('') since IE is fussy about those things. It looks like you did that in several other places.