[jQuery] Deserialize plugin with jQuery 1.1

2007-01-18 Thread bmckenzie
I have been using the deserializer plugin to fill forms with JSON. But it doesn't work properly with jQuery 1.1 Here are two test pages: This page http://www.2minuteexplainer.com/test/deserializeMe.html uses an older version of jQuery (1.0, I thinki) and deserializes data into its forms as it

Re: [jQuery] What is this question, this one about filters

2007-01-14 Thread bmckenzie
Jörn Zaefferer wrote: The filter(function) needs jQuery 1.1a+ to work correctly. Older versions accept the Function, but apply different scope and different arguments. I suspect that this is the reason why it isn't working, I can't see anything wrong with your code. If an upgrade

[jQuery] What is this question, this one about filters

2007-01-13 Thread bmckenzie
Greetings. I'm trying to get a list of forms from a DIV where the form's done input is set to 1 or 0 . Why does this code throw an error (this.done.value has no properties) ? var myForms = $('.actionForm', myDiv).filter(function(){ return this.done.value==1 ; }); I can get the

Re: [jQuery] What is this question, this one about filters

2007-01-13 Thread bmckenzie
Rigent wrote: You're not setting the done input to 0 or 1 because you have the double '=' in there, it should be: return this.done.value = 1; Actually, I want a collection containing the forms where the field done has already been set to 1. B. -- View this message in context:

Re: [jQuery] Help make Thickbox talk to an iframe

2006-11-07 Thread bmckenzie
bmckenzie wrote: I'm using a Thickbox iframe to display HTML pages containing Flash movies. The thickbox appears on top of other Flash elements (buttons) contained in another iframe. I find that on some computers, the Flash underneath shows through the Flash in the thickbox (I'm

[jQuery] Help make Thickbox talk to an iframe

2006-11-06 Thread bmckenzie
I'm using a Thickbox iframe to display HTML pages containing Flash movies. The thickbox appears on top of other Flash elements (buttons) contained in another iframe. I find that on some computers, the Flash underneath shows through the Flash in the thickbox (I'm guessing this is because the

Re: [jQuery] Extended tabs in Thickbox iframe

2006-10-22 Thread bmckenzie
. This fails (in FF, at least) if loaded in a thickbox iframe, tho' it works fine otherwise. Dan Atkinson wrote: Do you have a link to a (non)working example that you can put on the web? bmckenzie wrote: Hello. I've run into a problem combining two plugins. When displaying a page that uses

[jQuery] Form submission from thickbox iframe

2006-10-22 Thread bmckenzie
I have a form page that loads in a thickbox iframe. I want to ajaxSubmit the form, close the thickbox, and update some elements in the parent window with the results of the Ajax call. But I'm having trouble coming up with the syntax for doing this. Hints/examples will be appreciated :-) -- View

[jQuery] Adding tabs dynamically with plugin

2006-09-13 Thread bmckenzie
I'm new to jquery -- quite impressed. I'm trying to convert a page (built with prototype and scriptaculous) where clicking on a link adds a navigation tab with content fetched via Ajax. I can add a tab ok with (using dom creator plugin) . But the tabs plugin (by Klaus Hartl) seems to be set