[jQuery] jQuery.easing[this.options.easing || (jQuery.easing.swing ? swing : linear)] is not a function

2007-11-05 Thread Daemach
After upgrading to jquery 1.2.1 I'm getting the error above on a regular basis. Has anyone else seen this?

[jQuery] jQuery documentation, Aptana and scriptDoc support

2007-10-08 Thread Daemach
I'm just crawling back into the programming world after a long hiatus, and noticed a new generate HTML docs button in Aptana. If you follow the scriptDoc standards, it generates a pretty decent output with one click. Their code assist functionality pulls from these scriptDoc blocks as well

[jQuery] Re: Fastest method to create table rows

2007-08-07 Thread Daemach
You're probably running into something similar to this: http://ideamill.synaptrixgroup.com/?p=14 Try adding style=display:none; to those TDs before the browser gets them. With any luck IE will ignore them rather than try to rebuild the entire CSS object every time you add them to the DOM. Once

[jQuery] Re: ANNOUNCE: zoomi plugin!

2007-06-23 Thread Daemach
Very nice work Sean - that is going to be really useful. I haven't looked into the border issue you mentioned, but this.width or this.style.width hold the value of the style= attribute of the element. When your node's styles are inherited via a css rule you need to look for the computed style.

[jQuery] Re: ANNOUNCE: zoomi plugin!

2007-06-23 Thread Daemach
Erg - I hit send too soon... If you look at document.styleSheets[0].cssRule[4].style.borderTop in the Firebug DOM tab, it looks like it should be returning a value for that attribute. I can't tell you why it doesn't at the moment, but if you query borderTopWidth, borderTopColor, or

[jQuery] Re: ANNOUNCE: zoomi plugin!

2007-06-23 Thread Daemach
Here's an even better way :) str+=border-top-style: + $(this).css(borderTopStyle) + br/; On Jun 23, 2:33 pm, Sean Catchpole [EMAIL PROTECTED] wrote: Another weekend, another plugin =P zoomi:http://www.sunsean.com/zoomi/ So here's the scoop. It's almost ready, beta as some people call it.

[jQuery] Re: Append Area to Map

2007-06-08 Thread Daemach
Can you make a test page available? 1.1.2 had a bug that prevented attaching select tags and colgroup tags which is fixed for 1.1.3 and it's possible that the map or area tags are also a problem. The append mechanism appends the tag to a div as it's building and before attaching to the final

[jQuery] What event is fired when all images are loaded and displayed?

2007-06-05 Thread Daemach
I'm using body onload to reset a menu, but the onload event seems to be fired before the images are actually displayed. This causes the menu to be in the wrong position on the initial load, though it works correctly once the images are cached. Is there another event that gets fired when

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Daemach
Thanks to all of you - I'll try both. On Jun 5, 2:40 pm, Mika Tuupola [EMAIL PROTECTED] wrote: On Jun 5, 2007, at 9:03 PM, Daemach wrote: I'm using body onload to reset a menu, but the onload event seems to be fired before the images are actually displayed. This causes the menu

[jQuery] Re: iframe question - frameReady plugin

2007-05-31 Thread Daemach
That's a good question. I designed frameReady to break closures because the reference to the parent frame was causing execution problems. I just updated it though, adding the ability to send data that you can reference separately using the options object. Your code would look like this: var

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-30 Thread Daemach
I posted a zip this evening that contains the source code and support files for tableFilter. You can find it here: http://ideamill.synaptrixgroup.com/?p=17 On May 29, 11:30 am, Daemach [EMAIL PROTECTED] wrote: The short answer is absolutely. If you're not in a serious rush I would

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-29 Thread Daemach
-Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: Friday, May 18, 2007 3:32 PM To: jQuery (English) Subject: [jQuery]tableFilterBeta 2 is now live For those of you who are interested, I just uploaded another beta

[jQuery] Re: jQuery on Rails-related

2007-05-29 Thread Daemach
What is jQuery on Rails? ;) On May 29, 9:52 am, Yehuda Katz [EMAIL PROTECTED] wrote: Hey guys, Great news! Hpricot has accepted my patches to make hpricot compatible with jQuery, which means you'll only need to checkout the latest hpricot from svn to use jQuery on Rails. -- Yehuda Katz

[jQuery] Re: object detection in jQuery

2007-05-29 Thread Daemach
You can use a selector such as $('#myElem') to get an element by ID. $ ('#myElem').size() gives you the size of the matched set - you can use that in an if statement if you want. One of the great things about jQuery, however, is the basic concept. If it doesn't find the element it doesn't do

[jQuery] Re: Finding a parent list item.

2007-05-26 Thread Daemach
In the interest of teaching a man to fish: 1. Install firebug from www.getfirebug.com 2. Turn it on by right clicking the small grey icon in the lower right corner - status bar. 3. Download this and include it in your scripts: http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ 4. Switch to

[jQuery] Re: Finding a parent list item.

2007-05-25 Thread Daemach
Try $(fieldset).find(:input) to grab all form fields. (http:// docs.jquery.com/DOM/Traversing/Selectors) If that doesn't work, [EMAIL PROTECTED] should pick it up. On May 25, 9:08 am, fambizzari [EMAIL PROTECTED] wrote: Unfortunately, whilst your suggestions work excellently, the following

[jQuery] Re: Finding a parent list item.

2007-05-25 Thread Daemach
that is the problem and everything works fine if its gone. Any more ideas? On May 25, 7:14 pm, Daemach [EMAIL PROTECTED] wrote: Try $(fieldset).find(:input) to grab all form fields. (http:// docs.jquery.com/DOM/Traversing/Selectors) If that doesn't work, [EMAIL PROTECTED] should pick it up

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Daemach
});} setTimeout(gen(),1000); /script Anyhelp!? Sorry my Basic english :) On May 18, 4:31 pm, Daemach [EMAIL PROTECTED] wrote: For those of you who are interested, I just uploaded another beta of my tableFilter plugin. New features include performance improvements, saving (some..more

[jQuery] Re: tableFilter Beta 2 is now live

2007-05-25 Thread Daemach
tableFilter can do a multi-column sort on an 800-row table in under 60ms - it takes a bit longer to move the table rows around :) On May 25, 11:18 am, Sean Catchpole [EMAIL PROTECTED] wrote: I'm not sure how you're doing your sorting, but you may find the following useful: // Array.Sort

[jQuery] Re: Conventional JS/DOM to jQuery conversion help

2007-05-23 Thread Daemach
I don't know if you've found these yet, but here are two great sources of information - reading the examples in the api browser will really help you get your head around the jquery methodology. I'm from a DOM background too, and this is how I got up to speed

[jQuery] Re: Conventional JS/DOM to jQuery conversion help

2007-05-23 Thread Daemach
I don't know if you've found these yet, but here are two great sources of information - reading the examples in the api browser will really help you get your head around the jquery methodology. I'm from a DOM background too, and this is how I got up to speed

[jQuery] Re: Boolean value for if an element exists

2007-05-23 Thread Daemach
var redlineExists = ($('#redlineSelect').size()) On May 23, 10:31 am, Andy Matthews [EMAIL PROTECTED] wrote: I've got some multiple dropdowns that I'm trying to conditionalize. Our designers can select one (or both) of two sets of code. I'd like to conditionalize my jQuery code so that if the

[jQuery] Re: Boolean value for if an element exists

2007-05-23 Thread Daemach
var redlineExists = ($('#redlineSelect').size() 0) if you want a true boolean, I guess... On May 23, 10:31 am, Andy Matthews [EMAIL PROTECTED] wrote: I've got some multiple dropdowns that I'm trying to conditionalize. Our designers can select one (or both) of two sets of code. I'd like to

[jQuery] Re: Question about the context attribute of a jQuery call

2007-05-23 Thread Daemach
I think you can use a selector in a context attribute, but there isn't much point in this situation. If all of your ID's are unique (and they should be), $('#make') is enough. You don't need a context. When you use the #, it's the same as doing document.getElementByID(); On May 23, 11:19 am,

[jQuery] Re: Question about the context attribute of a jQuery call

2007-05-23 Thread Daemach
this is not the best design pattern, and class or name could be used for selection rather than IDs. Or, set it up so the IDs are not duplicated. -- Josh - Original Message - From: Daemach [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, May 23, 2007 11:46 AM Subject

[jQuery] Re: Debugging jQuery

2007-05-22 Thread Daemach
It works great Jake ;) Excellent work and thank you very much for making it available! On May 21, 5:21 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Now I start off closed, and use a light blue background in the debug div. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Regex experts: search/replace operations

2007-05-22 Thread Daemach
Thanks to all. I learn a little more each day ;) On May 22, 3:03 am, Ralf S. Engelschall rse+jquery- [EMAIL PROTECTED] wrote: On Tue, May 22, 2007, Jörn Zaefferer wrote: Dan G. Switzer, II wrote: This is a little off-topic, but when doing a regex search and replace within a text

[jQuery] Re: Slow selector

2007-05-22 Thread Daemach
You should definitely consider using a classname to select items like this. $('input.quantity') would be significantly faster. On May 22, 8:29 am, Gordon [EMAIL PROTECTED] wrote: I am writing a script that scans a list of items that each contain form fields and doing something based on the

[jQuery] Re: Shortest Selector

2007-05-22 Thread Daemach
It depends on how much control you have over the original HTML. If you're generating it from a dynamic language like coldFusion, ASP, PHP, etc. and you will always be linking a specific link with a specific div AND you don't mind adding ID's the fastest selector is $ ('#'+this.id.split(_)[1]);

[jQuery] Re: Debugging jQuery

2007-05-22 Thread Daemach
of the firebug commands. console.time timeEnd are working. Is there another command that you like to run without loading firebug lite? On 5/22/07, Daemach [EMAIL PROTECTED] wrote: It works great Jake ;) Excellent work and thank you very much for making it available! On May 21, 5:21 pm, Ⓙⓐⓚⓔ

[jQuery] Regex experts: search/replace operations

2007-05-21 Thread Daemach
This is a little off-topic, but when doing a regex search and replace within a text editor, how can I replace one character within a specific pattern? I want to get rid of newlines within td tags. This finds them: td[^]+(\r\n).+/td How do I specify that I only want to replace the matched set?

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
It appears that extend no longer extends objects with more than one object. In 1.1.2 I could do: this.settings = jQuery.extend({}, this.defaults, arguments.options, this.userOptionsFromCookie); // named to illustrate purpose Now, only the arguments.options values extend the defaults. Is

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach
work on co-existence with firebug lite, so you would have $.log and console. routines together. On 5/20/07, Daemach [EMAIL PROTECTED] wrote: I mostly use it for the log and timing functions (time/timeend) since I can't get much else out of IE. You can't really dump any useful

[jQuery] Re: Regex experts: search/replace operations

2007-05-21 Thread Daemach
I get hung up on the silliest things Thanks Dan ;) On May 21, 2:50 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: This is a little off-topic, but when doing a regex search and replace within a text editor, how can I replace one character within a specific pattern? I want to get rid of

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach
, it fills up. and turns into a scrolling div. the little demo debug.html shows this. On 5/21/07, Daemach [EMAIL PROTECTED] wrote: I downloaded it, and when I fire up the page I get a blue line near the bottom - not a panel with a blue border, just a blue line. When I mouse over the line

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
function to process all of its arguments instead of dying at the first undefined value? On May 21, 3:16 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Daemach wrote: It appears that extend no longer extends objects with more than one object. In 1.1.2 I could do: this.settings

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
The tabs plugin uses the fadein/out effects - I'll bet it has something to do with a bug I just found. It's hard to describe - I'm just glad I could replicate it. Test case below. http://ideamill.synaptrixgroup.com/jquery/test/113fxbug.htm On May 21, 4:38 pm, Aaron Heimlich [EMAIL PROTECTED]

[jQuery] Re: Debugging jQuery

2007-05-20 Thread Daemach
Thanks Jake - new tools are always appreciated. Unfortunately, this plugin breaks firebug.js which is my only source of information in IE : ( http://www.getfirebug.com/lite.html On May 19, 9:39 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Get yer red-hot debugging...

[jQuery] Re: Debugging jQuery

2007-05-20 Thread Daemach
. On 5/20/07, Daemach [EMAIL PROTECTED] wrote: Thanks Jake - new tools are always appreciated. Unfortunately, this plugin breaks firebug.js which is my only source of information in IE : ( http://www.getfirebug.com/lite.html On May 19, 9:39 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Get

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
I have a slightly different problem - I have a vertical menu that gets displayed when you mouse over a link using slideDown. I attached a slideUp event to the mouseout event of the containing div, but if the pointer moves back over the menu before the animation is done it restarts the animation

[jQuery] Re: Tablesorter: what am I doing wrong?

2007-05-17 Thread Daemach
I don't know tablesorter, but here is another potential option - it's not very configurable right now, but some interesting things are coming soon. I'm just trying to work out some performance issues in * %#%$!%$ Internet Explorer. http://ideamill.synaptrixgroup.com/?p=7 On May 17, 7:33 am,

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
) over the target object. http://cherne.net/brian/resources/jquery.hoverIntent.html Brian. On 5/17/07, Daemach [EMAIL PROTECTED] wrote: I have a slightly different problem - I have a vertical menu that gets displayed when you mouse over a link using slideDown. I attached a slideUp

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
; Then in the callback of the animation ... just set it to false. The mouseout would need to check isAnimating before being allowed to do anything. -- Brandon Aaron On 5/17/07, Daemach [EMAIL PROTECTED] wrote: That plugin is cool - I looked at it before. Unfortunately I'm triggering the close

[jQuery] Re: newbie onmouseover onmouseout

2007-05-17 Thread Daemach
. On 5/17/07, Daemach [EMAIL PROTECTED] wrote: That plugin is cool - I looked at it before. Unfortunately I'm triggering the close and open from two different elements and using the mouseout event on the menu itself to close. The problem is that if the mouse leaves the object, it starts

[jQuery] Tabs plugin broken with MS patch last night?

2007-05-09 Thread Daemach
I have several machines, dell laptops to be specific, that are not rendering tabs properly after the MS patches last night.The tabs are there, but the tab container is empty. This is happening in both IE 7 and Firefox 2. Is anyone else seeing this behavior?

[jQuery] Re: Tabs plugin broken with MS patch last night?

2007-05-09 Thread Daemach
I'm sorry, I just figured out that the problem was with the animation functions in the last available nightly. I had patched it to allow appending selects and col/colgroups to the dom for my tableFilter plugin and it broke the tabs plugin. Of course, the dev site is down so I can't look at the

[jQuery] Re: Is there a standard way for a child object to reference a parent object?

2007-05-07 Thread Daemach
into JavaScript. What marks is pointing too is a library that allows you to build that heirachy in a consistant manner. I haven't needed to use it so I can't vouch for it. Karl Rudd On 5/7/07, Daemach [EMAIL PROTECTED] wrote: This is more of a base javascript question - it's not specific

[jQuery] NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Daemach
I just uploaded my latest plugin, tableFilter(). It's an early beta with ugly, less than optimal code, but it works pretty well. Feed it a clean table and it will auto-filter, auto-sort and auto-page. You can sort and/or filter on multiple columns using ctrl-click. It works well in Firefox to

[jQuery] Re: NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Daemach
Those might be possible - let me give it some thought. Handling the regex is going to be tricky because it's a string and therefore needs to be escaped. On May 7, 4:40 pm, Chris W. Parker [EMAIL PROTECTED] wrote: That is slick! How about: * RegEx in the filter boxes? :) * Comparison

[jQuery] Re: NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Daemach
Yep - I'm looking forward to 1.1.3 very much ;) On May 7, 4:54 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Looks great! BTW ... jQuery 1.1.3 will support col and colgroup tags. -- Brandon Aaron On 5/7/07, Daemach [EMAIL PROTECTED] wrote: I just uploaded my latest plugin, tableFilter

[jQuery] Re: NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Daemach
Dagnabbit, I thought I fixed that last night :) It works properly now. On May 7, 5:28 pm, Web Specialist [EMAIL PROTECTED] wrote: Very good. Only one tip: if navigate to page 3 and filter by City Sao Paulo returns ZERO. Is necessary to jump to page 1 to show that records. Cheers

[jQuery] Re: NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Daemach
You're right - I need to work on the numerics next. I am forced to do an alphabetical sort if I want to sort on multiple columns simultaneously, so that means converting numbers to strings while retaining their order, and doing it quickly. I'll probably need to limit the number of decimal

[jQuery] Re: frameReady some time crash?

2007-05-06 Thread Daemach
updating the jquery path or telling it not to load would probably solve your problem. On May 5, 3:11 pm, Daemach [EMAIL PROTECTED] wrote: I don't see from this code where it might be breaking - can you please give me a URL so I can look at this? BTW, if you add $daemach.debug to your code you can

[jQuery] Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread Daemach
I am finally figuring objects out - yay :) If I use a constructor to create a new object (car), I can refer to its properties and methods from within that object with this (this.model). If I set one if its properties (this.engine) to another new object (new engine()), is there a standard way to

[jQuery] Re: Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread Daemach
more reading Hopes this helps On May 7, 8:19 am, Daemach [EMAIL PROTECTED] wrote: I am finally figuring objects out - yay :) If I use a constructor to create a new object (car), I can refer to its properties and methods from within that object with this (this.model). If I set one

[jQuery] Re: frameReady some time crash?

2007-05-05 Thread Daemach
I don't see from this code where it might be breaking - can you please give me a URL so I can look at this? BTW, if you add $daemach.debug to your code you can see the loading process in the console. On May 5, 7:11 am, oscar esp [EMAIL PROTECTED] wrote: I have next code: jQuery.blockUI();

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Daemach
Very cool - I can finally replace xin :) One thing I had to hack into that code was the ability to trigger an event on the input field programatically after selecting the date. Can you provide a triggerEvent(keyup|focus|change) parameter that will trigger the specified event in the attached

[jQuery] Re: jVariations = new plug-in/tool

2007-04-21 Thread Daemach
Neat - thanks for making it available. On Apr 21, 1:21 pm, Brian Cherne [EMAIL PROTECTED] wrote: jVariations is a developer tool that generates a control panel (with checkboxes and radio buttons) to show and hide variations (aka corner cases) in a single HTML template. Why? When providing

[jQuery] Re: Taconite question...

2007-04-20 Thread Daemach
http://www.getfirebug.com/lite.html helps a lot. On Apr 20, 7:00 pm, Shelane [EMAIL PROTECTED] wrote: I'm having a strange issue on IE (isn't it almost always the culprit of issues). I'm returning this: taconite replaceContent select=#mystatus a href=#

[jQuery] Plugin: frameReady updated. Now with better docs and demos ;)

2007-04-19 Thread Daemach
I just updated frameReady to support loading script and stylesheet files in other frames, including nested, dynamically created iframes if necessary. frameReady loads jQuery in the target frame(s) by default, so you can run any jQuery function in the target frame as if you were dealing with the

[jQuery] Re: Injecting JavaScript and CSS - Optimization Technique

2007-04-18 Thread Daemach
I just verified that frameReady() works perfectly with dynamically created iframes, even in IE. On Apr 18, 1:47 pm, mdelmarter [EMAIL PROTECTED] wrote: Hi Markus, Pretty much. Here is an example: function getIframe($id) { $length = top.frames.length; for (var i=0; i

[jQuery] Re: New plugin: frameReady()

2007-04-17 Thread Daemach
Yes, sorry. I just found another IE quirk ;) It should work now. On Apr 17, 2:43 am, Paul Bakaus [EMAIL PROTECTED] wrote: Hey Daemach, this really looks nice, and I'm looking forward to use it, but it does not work for me in IE7 (for the time of being, at least not your demo). The iframes

[jQuery] Re: iFrame Content Update

2007-04-17 Thread Daemach
Perhaps this would help? http://groups.google.com/group/jquery-en/browse_thread/thread/e1b2c367f354aead On Apr 17, 10:11 am, oscar esp [EMAIL PROTECTED] wrote: I would like to update iFrame content with ajax call result like: jQuery.ajax({ type: get,

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-17 Thread Daemach
the function and executes it immediately... On Apr 14, 6:49 pm, Matt Kruse [EMAIL PROTECTED] wrote: On Apr 14, 12:42 pm, Daemach [EMAIL PROTECTED] wrote: IE doesn't seem to like to eval anonymous functions. Is there a way around this other than to strip the function wrapper? eval

[jQuery] Re: Will this code enable disable a submit button?

2007-04-17 Thread Daemach
) Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: Monday, April 16, 2007 10:14 PM To: jQuery (English) Subject: [jQuery] Re: Will this code enable disable a submit button? You would probably need to return a more

[jQuery] New plugin: frameReady()

2007-04-16 Thread Daemach
frameReady works a lot like $(document).ready() with a few advantages when working with frames: $.frameReady(function,target,remote,jQuery); -- Waits for the DOM to be ready in the target frame before running code. -- It can be run from within any frame or the root document. -- Function is a

[jQuery] Re: Will this code enable disable a submit button?

2007-04-16 Thread Daemach
Actually to re-enable a disabled element you need to remove the disabled attribute altogether - use: $(form).find([EMAIL PROTECTED]).removeAttr(disabled); or $ (input:submit).removeAttr(disabled); for short. On Apr 16, 9:42 am, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all... Will the

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-14 Thread Daemach
Outstanding! Thank you very much... On Apr 14, 10:49 am, Matt Kruse [EMAIL PROTECTED] wrote: On Apr 14, 12:42 pm, Daemach [EMAIL PROTECTED] wrote: IE doesn't seem to like to eval anonymous functions. Is there a way around this other than to strip the function wrapper? eval(function

[jQuery] Re: Using TableSorter with hide()/show() on table rows

2007-04-13 Thread Daemach
Speaking of custom code, how is the demi-awesome Matt Kruse tablesorter/filter/pager/gogetmeabeer jquery plugin coming? :) On Apr 13, 11:02 am, Matt Kruse [EMAIL PROTECTED] wrote: One approach would be to put connected rows in separate tbody tags, then sort the tbody objects based on the

[jQuery] Frames/context/scope gurus, I need your wisdom...

2007-04-13 Thread Daemach
I ran into a problem with code in one frame trying to operate on an element in another frame last night that turned out to be caused by the target DOM not being ready when I ran the selector. I created a quick jq plugin that acts like $(document).ready() to run functions when the target frame's

[jQuery] Re: Frames/context/scope gurus, I need your wisdom...

2007-04-13 Thread Daemach
Yes, it was a closure. I'm catching on. Problem solved. On Apr 13, 2:46 pm, Daemach [EMAIL PROTECTED] wrote: I ran into a problem with code in one frame trying to operate on an element in another frame last night that turned out to be caused by the target DOM not being ready when I ran

[jQuery] How do I trigger the click event on a button in another frame?

2007-04-12 Thread Daemach
This started out as just a quick hack until I can redo the mechanism correctly, and now I just want to know how it works. $(window) has no properties, so $(window.frames[1].document) has no properties. Oddly, window.frames[1].document in firebug pulls the correct document. I've been trying to

[jQuery] Re: How do I trigger the click event on a button in another frame?

2007-04-12 Thread Daemach
. The other thing you could run into is security issues if your two frames are running under different contexts. JK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: Thursday, April 12, 2007 6:04 PM To: jQuery (English) Subject: [jQuery] How