Re: [jQuery] FF class manipulation--possible bug

2006-12-19 Thread Brandon Aaron
Good catch ... you could log the issue to make sure it gets fixed. http://jquery.com/dev/bugs/new/ -- Brandon Aaron On 12/19/06, bander [EMAIL PROTECTED] wrote: I'm sorry for cluttering up the list with a niche issue but I've found a workaround for both parts of the problem: although the

[jQuery] events on cloned objects?

2006-12-19 Thread Shahbaz
I have a table with several rows but a single column, each cell in this column has a class X. One of the cells (the last row) has a click event, when clicked, it just prints a log statement (confirmation that it received the event). In my $(document).ready... function, I clone the single column

Re: [jQuery] events on cloned objects?

2006-12-19 Thread Erik Beeson
I think, by design, events aren't cloned. Just reapply the click event handler when you do the cloning: $(...).clone().click(click_handler).appendTo(...); The docs should probably clarify this behavior. --Erik On 12/19/06, Shahbaz [EMAIL PROTECTED] wrote: I have a table with several rows

Re: [jQuery] performance issues in IE

2006-12-19 Thread dave.methvin
Todd Menier wrote: Hello, I'm writing a function in a global script that will apply focus to the first visible enabled form field on a page. ... $('#mainContent :input:visible:not(:checkbox):not(:button):not(:submit):not(:image):not([EMAIL PROTECTED]):first') I had assumed that the

Re: [jQuery] performance issues in IE

2006-12-19 Thread Aaron Heimlich
On 12/19/06, dave.methvin [EMAIL PROTECTED] wrote: $('textarea,select,[EMAIL PROTECTED]').select(':not([EMAIL PROTECTED]):first') Did you perhaps mean filter() instead of select()? The only select() that's listed in the API docs an event handler shortcut. -- Aaron Heimlich Web Developer

Re: [jQuery] modalContent plugin is not modal

2006-12-19 Thread Tim Saker
Jörn Zaefferer wrote: Tim Saker schrieb: I've actually completed a solution to these problems prior to this post. The solution involves updates to both the modalContent plugin and it's dependency, dimensions.js. I just need to finish polishing the changes to conform to the plugin

Re: [jQuery] events on cloned objects?

2006-12-19 Thread Khurshid MUROD
no events are not cloned, I've had the same problem, as Erik says you gotta reapply events -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent: Wednesday, 20 December 2006 3:33 PM To: jQuery Discussion. Subject: Re: [jQuery] events on cloned

Re: [jQuery] jquery session handling versus PHP

2006-12-19 Thread David Duymelinck
Kim Johnson schreef: Thanks to all three of you for the responses :) To explain a bit more about the extent of how I use the sessions, the majority of why I use them is to restrict access to certain areas. I have varying levels of permissions on each user account, and do the usual check if

<    1   2