[jQuery] Accordion with dynamic loading data

2009-07-16 Thread Todd Stuart
Hello I am needing an accordion with dynamic data loading on each tier. Does anyone have a good example of this. I thought I would ask before I took the dive. Thanks, TS

[jQuery] Selector issue (i think), Cant control specific elements

2009-04-28 Thread stuart
Heres a very stripped down version of the page i'm trying to write. For simplicity, the Show / Hide functions (not meaning hide from view, but within a db) are the same (they change the background color of the div), the functions work for the most part but ignores certain divs (the ones titled

[jQuery] Show and Hide methods on div tag stuttering animation

2008-11-26 Thread Todd Stuart
Hello, I am using .show() and on a div object. In both IE and FF the display starts out nice and smooth and then seems to stutter at the end of the show. I have tried using .show(fast), .show(slow) also, but with the same results. Does anyone know a fix to this? Thanks, TS

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Stuart Dunkeld
I think the problem is that iWebSite.js uses the Prototype library, and there's a conflict over which library gets to use the $ shortcut. http://docs.jquery.com/Using_jQuery_with_Other_Libraries has some techniques which may help resolve the conflict.. -- stuart On Tue, Sep 9, 2008 at 9:28 PM

[jQuery] Re: ui.datepicker trouble

2008-07-15 Thread Stuart Batty
John, would you be willing to post the solution you had at work? I'm still trying to get this frackin' thing to work. Shawn-53 wrote: Thanks John. Your tip pointed me in the right direction. Basically I changed my code from $(#mycontrol).datepicker(getDate) to

[jQuery] jQuery moreSelectors :modified - code stopped working

2008-03-26 Thread Stuart
I used the excellent moreSelectors plugin on a project about a year ago and I just discovered that the old code has stopped working. I'm using window.onbeforeunload to call a function that checks to see if there are any modified form fields and alert the user that changes will be lost. The code

[jQuery] Re: jQuery moreSelectors :modified - code stopped working

2008-03-26 Thread Stuart
. Any thoughts? On Mar 26, 10:05 am, Stuart [EMAIL PROTECTED] wrote: I used the excellent moreSelectors plugin on a project about a year ago and I just discovered that the old code has stopped working. I'm using window.onbeforeunload to call a function that checks to see if there are any modified

[jQuery] Re: Div Changer Using Hide And Show

2008-02-22 Thread Charles Stuart
This is quite generalized and is bookmarkable... - http://enure.net/dev/hide-all-except-one/ On Fri, Feb 22, 2008 at 6:50 AM, J Moore [EMAIL PROTECTED] wrote: good tips so far. I just wanted to add that using classes and ids works well. a href=# id=blackbook class=showshow

[jQuery] Re: Can JQuery support iCab 3 (for legacy Mac OS9)

2008-02-18 Thread Charles Stuart
Since this page (http://docs.jquery.com/Browser_Compatibility) and your post do not agree, could you clarify if Firefox 1.5+ on Mac OS X is supported? best, Charles On Jan 8, 7:06 am, John Resig [EMAIL PROTECTED] wrote: Nope, definitely not. We already don't support anything less than

[jQuery] Re: Opinions on YUI?

2007-09-19 Thread Stuart
Yeah! what Jorn said! I love both jQuery and Ext but wouldn't it be fantastic to have Ext's widgets, panels, etc all with jQuery's syntax? On Sep 19, 1:28 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brian Miller schrieb: Hopefully, people are open-minded, and willing to mash up 2-3 different

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-17 Thread Jacob Stuart
Hey Joel, Thanks for the excellent and clear response. I personally really appreciated the detail and thoroughness of it. Good luck on implementing the function call(s) and thanks for continuing to refine your extremely handy plugin. Cheers, Jacob Stuart On Sep 16, 11:25 pm, Joel Birch [EMAIL

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-17 Thread Jacob Stuart
. One thing I wasn't able to test was how well the function call works with nested menus (my implementation only has a single level drop down). Thanks again for all your help and work. Jacob Stuart On Sep 17, 11:19 am, Joel Birch [EMAIL PROTECTED] wrote: Thanks Jacob. I wondered if you would

[jQuery] Re: Superfish Question (v1.3.1)

2007-09-14 Thread Jacob Stuart
Thanks for the reply Joel. If it is indeed something that isn't really needed then you can take all the time you need ;). Cheers, Jacob Stuart On Sep 14, 6:06 am, Joel Birch [EMAIL PROTECTED] wrote: Hi Jacob, I don't have time right now to reply in as much detail as I would like, but I

[jQuery] Re: FCKeditor replacement which works in Safari

2007-09-14 Thread Jacob Stuart
I played around with tinyMCE (v 2.1.0) a few months back and really enjoyed it: simple and lightweight. However I ran into a bug that made it impossible for me to use in the application I was developing. If a user is browsing with IE and Content Advisor enabled (in Tools Internet Options then

[jQuery] Re: .click() issue in FireFox

2007-09-12 Thread Jacob Stuart
). So maybe it is a bug since it works in IE and not FF (seems backwards, eh?). Cheers! Jacob Stuart Fellow Web Developer On Sep 10, 4:54 pm, George Blouin [EMAIL PROTECTED] wrote: I have rows of data that look like this tr class=MainRow onmouseover=this.className = 'Highlight'; onmouseout

[jQuery] Select range of table rows

2007-08-29 Thread Stuart
I'm trying to figure out an efficient way to select a range of table rows. What I'd like to do is select perhaps rows 11 through 19. I want to have the selector put the desired rows into the jquery object instead of grabbing all rows and looping through them to operate only on the ones I want.

[jQuery] Re: Select range of table rows

2007-08-29 Thread Stuart
Yeah.I think I remember reading about the slice method in the change log. I am using 1.1.4 so I should be set. The API doesn't list it yet so thanks for the code snippet. Thanks Benjamin! On Aug 29, 11:58 am, Benjamin Sterling [EMAIL PROTECTED] wrote: Stuart, in 1.1.4 you have the slice

[jQuery] How to select element id that contains [] chars

2007-08-16 Thread Stuart
I've got a little problem here that would seem simple to sort out but has been rather stubborn. I'm trying to loop through a bunch of hidden text fields and grab their value. They look like so; input type=hidden id=scheduleHours[0] name=scheduleHours[0] value=7.5 / input type=hidden

[jQuery] Re: How to select element id that contains [] chars

2007-08-16 Thread Stuart
to work right... --Erik On 8/16/07, Stuart [EMAIL PROTECTED] wrote: I've got a little problem here that would seem simple to sort out but has been rather stubborn. I'm trying to loop through a bunch of hidden text fields and grab their value. They look like so; input type=hidden id

[jQuery] Having difficulty binding keypress handler in IE 6 7

2007-05-30 Thread Stuart
I'm trying to bind a keypress event handler to the input element in the last cell of a table row. In the real application this will be used to check for a tab key and call a function to add another row to the table. I have it working in FF but apparently the keypress event never gets bound in IE

[jQuery] Re: Having difficulty binding keypress handler in IE 6 7

2007-05-30 Thread Stuart
. Worth [EMAIL PROTECTED] wrote: On 5/30/07, Stuart [EMAIL PROTECTED] wrote: I'm trying to bind a keypress event handler to the input element in the last cell of a table row. In the real application this will be used to check for a tab key and call a function to add another row

[jQuery] Re: Quick javascript question (not jQuery)

2007-05-30 Thread Stuart
What you want to do is bind a function to the onbeforeunload event of the window object (ie. window.onbeforeunload = someFunction;). The onbeforeunload event fires before onunload as the name implies. Here's a couple artices that should get you on track:

[jQuery] jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart Batty
In an effort to download the dimensions plugin I've discovered that the svn browser is not working and the link to the plugin on the jQuery site is inaccessible. I understand that there has been some trouble of late so I thought it best to spread the message in the event that these problems are

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
www.learningjquery.com On May 9, 2007, at 12:06 PM, Stuart Batty wrote: In an effort to download the dimensions plugin I've discovered that the svn browser is not working and the link to the plugin on the jQuery site is inaccessible. I understand that there has been

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
is an empty Plesk installation. As mentioned earlier the jQuery project page (http://jquery.com/plugins/project/ dimensions) is also throwing a 404. Where can one find some docs for the dimensions plugin? On May 9, 3:45 pm, Stuart [EMAIL PROTECTED] wrote: Thank you for providing the alternate

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Stuart
somewhat outdated documentation on the visual jQuery site (visualjquery.com) under Plugins Dimensions. You can reference the changelog to see what is different (not much).http://www.learningjquery.com/src/plugins/dimensions/ChangeLog.txt -- Brandon Aaron On 5/9/07, Stuart [EMAIL PROTECTED] wrote

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-26 Thread Stuart
for your wonderful plugin. I'll be using this one a lot. Probably even for things it wasn't intended :-) Well you're already doing that, Stuart! This is an unusual use-case, blocking a page that you are leaving. I'm not sure I fully understand the setTimeout() bit. Am I correct in assuming

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-25 Thread Stuart
on the subject but no joy. Has anyone got an idea? On Apr 24, 9:10 am, Stuart [EMAIL PROTECTED] wrote: Yes, It works! Mostly. I'm still having problems with the overlay position in IE 6. I'm guessing that might be the result of some of my CSS stomping on the positioning used by blockUI. If you

[jQuery] Re: Why is IE messing with my mind?

2007-04-24 Thread Stuart
Try removing the comma after left: 0 on line 8. Firefox doesn't seem to mind the trailing comma but IE completely breaks. You see this with mostly with literal notation. On Apr 24, 11:06 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, On PC IE (v. 7.0) only, I'm getting a JS error on line

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-24 Thread Stuart
or 7. This example, however, does not present the iframe alignment problem I encountered with my original form. I can deal with that I think. It must be some sort of CSS collision. Here's the form: Thanks for the sample page, Stuart. I reworked your code a bit before I started debugging

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-23 Thread Stuart Batty
can sure use a little help with this IE issue. Thanks Stuart Batty wrote: I'm trying to use blockUI to block user from accessing menus, links, etc after clicking on a form submit button by blocking the form element. This would hopefully have the added benefit of keeping the user from

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-23 Thread Stuart Batty
clicks a submit button in IE it seems to take several seconds for the iframe to appear where in FF it is instantaneous. If you can think of any test methods I can employ please let me know. Your plugin does exactly what I need to do but I must support IE. malsup wrote: Stuart, Can you post

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-23 Thread Stuart
I just did an experiment where I added an explicit call to submit after the block and it works in IE. I just added $ (#myForm).submit(); after the call to block. It still takes about 6 seconds for the modal to appear but this does show that the submit event is getting clobbered somehow.

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-23 Thread Stuart Batty
The form is not submitted by ajax. It is a http post. I'll simplify the form down to something manageable and post. malsup wrote: Stuart, Is the form submitted via normal browser invocation or via ajax? Also, it would be immensely helpful if you could put together a simple html page

[jQuery] Re: blockUI plugin blocking form submit on IE 6 7

2007-04-23 Thread Stuart
=insertForm /form ?php } ? /body /html Sorry for just pasting the code here but I'm unable to host a live page at the moment. If that's necessary I can do that after I get home from work. Hope this helps. Thanks On Apr 23, 11:01 am, Stuart Batty [EMAIL PROTECTED] wrote: The form is not submitted by ajax