Re: [jQuery] New version of jquery and IE6 bugs

2007-03-30 Thread Jeremy Dill
Discussion. Subject: Re: [jQuery] New version of jquery and IE6 bugs Could you possibly post up an example? It is hard to know what is really going on without seeing it. -- Brandon Aaron On 3/8/07, Jeremy Dill [EMAIL PROTECTED] wrote: I am having major issues with the newer versions of JQuery

Re: [jQuery] New version of jquery and IE6 bugs

2007-03-30 Thread Jeremy Dill
Yes. And 1.1.1. Packed or unpacked, same result. -Original Message- From: Mike Alsup [mailto:[EMAIL PROTECTED] Sent: Friday, March 30, 2007 2:23 PM To: [EMAIL PROTECTED]; jQuery Discussion Subject: Re: [jQuery] New version of jquery and IE6 bugs Using jquery-1.0.4.js - NO PROBLEMS

[jQuery] New version of jquery and IE6 bugs

2007-03-08 Thread Jeremy Dill
I am having major issues with the newer versions of JQuery with IE6. Everything works beautifully in Firefox and IE 7. Jquery 1.04 is stable in IE 6, but jquery1.11+ causes an occasionally crash IE runtime error when using radio buttons that are triggering xajax calls. A bigger issue is that now

Re: [jQuery] New version of jquery and IE6 bugs

2007-03-08 Thread Jeremy Dill
version of jquery and IE6 bugs You could use some sort of content negotiation to serve up different versions of jquery depending on browser. Apache has a few different ways of doing this, not sure about other web servers. On Friday March 9 2007 10:10:14 am Jeremy Dill wrote: I am having major

[jQuery] FW: selectbox plugin - take 2

2007-02-06 Thread Jeremy Dill
I would like to know too. Is this a method for replacing form selectboxes with CSS? It would be great to see something like that. It would cure a lot of issues with IE Selectboxes (premature onchange firing, iframe hacking, IE7 requires a new onfocusin event for bg color changing, etc). I was

Re: [jQuery] cant append() form objects

2007-01-27 Thread Jeremy Dill
].id); Blair On 1/26/07, Jeremy Dill [EMAIL PROTECTED] wrote: Thanks. That does seem to work when it stands alone. I am having a hard time making it work in my actual environment however. This test is overly simplified to what I actually need. I tried using your method but I am missing

Re: [jQuery] cant append() form objects

2007-01-25 Thread Jeremy Dill
[mailto:[EMAIL PROTECTED] Sent: Thursday, January 25, 2007 7:48 AM To: [EMAIL PROTECTED]; jQuery Discussion. Subject: Re: [jQuery] cant append() form objects Is this just in IE or in other browsers too? -- Brandon Aaron On 1/24/07, Jeremy Dill [EMAIL PROTECTED] wrote: After upgrading from 1.0.4

Re: [jQuery] cant append() form objects

2007-01-25 Thread Jeremy Dill
to use this.$form.appendTo(this.$layer) it didn't work. Is this a bug? Not sure. But this function worked for me. Blair On 1/25/07, Jeremy Dill [EMAIL PROTECTED] wrote: After upgrading from 1.0.4 to 1.1.1 the following code no longer works. Please tell me if there is a solution to this issue

[jQuery] cant append() form objects

2007-01-24 Thread Jeremy Dill
After upgrading from 1.0.4 to 1.1.1 the following code no longer works. Please tell me if there is a solution to this issue. ---WORKING HTML TEST PAGE html xmlns=http://www.w3.org/1999/xhtml; http://www.w3.org/1999/xhtml head meta http-equiv=Content-Type

Re: [jQuery] slideUp/Down flicker with 1.0.4

2007-01-04 Thread Jeremy Dill
Ahh.. This might explain why 1.0.4 breaks a hack I made to fix an IE bug. I create an iframe element to shield DHTML layers absolutely positioned over select boxes. I was using $().show(10) to force the expansion of the Iframe within the box. This gives the box the exact dimensions required to

[jQuery] attr() throws error

2007-01-04 Thread Jeremy Dill
When using the following code: alert($('#ContactSelect').attr('tabIndex')); I get [TypeError: elem has no properties.] when ContactSelect does not exist on the page. To avoid this error, I am doing this: if ($('*').index(document.getElementById('ContactSelect'))!=-1)

[jQuery] Need help dealing with duplicate ID's in different forms

2007-01-03 Thread Jeremy Dill
I am working on an application which uses a jquery to show and hide preloaded layers sort of like netvibes.com. Another aspect of my application involves dynamic creation of forms. When these forms are created, they are given an ID based on an ID in the database. It all worked out great