[jQuery] Re: dev tip: combining JS script files

2007-07-17 Thread Michael Geary
My understanding is we put script tags in the head so as to not clutter up the body DOM. I don't think it has anything to do with ready(), and I'm pretty sure ready() doesn't require script tags to be in the head... Yes, but if you put the scripts at the end of the body you

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-17 Thread Alexandre Plennevaux
that's a really nice result! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Cherne Sent: mardi 17 juillet 2007 6:13 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: Horizontal Accordion A few months ago I worked the weekend on a

[jQuery] IE takes link when firing onclick event

2007-07-17 Thread quez
Hi guys, New to jquery but really loving it so far. I've done some code that seemed to work in all tested browsers, except IE The code: $(a.more).click( function(){ $(a.more).css(color,red).css(font-style,italic).css(font- weight,bold);

[jQuery] Re: parsing xml

2007-07-17 Thread quez
Thanks for your help. This works but I kinda brute-forced my way though. I'll see if I can implement it more clearly with this. Thanks. On Jul 15, 1:57 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Try: $('bio', this).text(); On 7/15/07, quez [EMAIL PROTECTED] wrote: Benjamin,

[jQuery] Re: strange behavior of Safari

2007-07-17 Thread n00bert
Hi, My eternal quest for a solution to Safari FOUC may, at last, have come to an end. See http://jonaquino.blogspot.com/2007/02/workaround-for-safari-fouc-bug.html this post. The author presents a solution and commenters come up with improvements. Just tried a test of an old site that failed

[jQuery] Re: Stopping a $.load call

2007-07-17 Thread Strija
On Jul 16, 11:15 pm, batobin [EMAIL PROTECTED] wrote: Hello everyone. This is a general question about stopping (or overriding) an AJAX call once it has been made. In order to illustrate my question I can give a specific example, but I'm sure this topic is applicable to many people besides

[jQuery] Re: tablesorter 2.0 - Shiny Brand new documentation!

2007-07-17 Thread Kia Niskavaara
Christian Bach wrote: After many late night i have managed to sort out a documentation/FAQ, for the new 2.0 release. The new tablesorter will be released next week. It's all looking great! Thanks!

[jQuery] Re: jQuery form plugin questions

2007-07-17 Thread Chris
Mike thank you so much! That works perfectly, I was able to figure out how to use both methods. I went for the one you suggested, but its nice to know how to do both. This was my biggest hurdle to overcome in learning ajax, I most definitely owe you a six pack! Thanks again! -Chris On Jul 16,

[jQuery] Re: Compressed BlockUI plugin?

2007-07-17 Thread Aaron Porter
I'll try to package it up and make it available tomorrow. Aaron Ganeshji Marwaha wrote: Aaron, I would like the jar file... I want to integrate this packer along with my ant build script... -GTG On 7/14/07, *Aaron Porter* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote:

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
Can anybody confirm if this is a bug? It looks like it to me! Here's the code... (function($) { $.fn.priceTable = function () { return this.each(function() { $(thead td:first, this).addClass('js-ptd'); $(thead th:last,

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Erik Beeson
I'm not sure what problem you're having. The pages appear to render identically in FF and Safari... What about it do you think isn't working right? In looking through the generated source in firebug, it appears that all of your classes are getting added to the correct elements... Actually,

[jQuery] Re: Binding problems - Thanks

2007-07-17 Thread Bruce MacKay
Thank you Mike - I'd inadvertantly dropped the interface.js file from the head section. And thanks also for the ajaxError tip - it'll help me in the future. Cheers, Bruce At 01:47 a.m. 17/07/2007, you wrote: Bruce, You've got a scripting error on your callbacks. ScrollTo is not a

[jQuery] I thought I understood threads...

2007-07-17 Thread PragueExpat
Why does the following function wait until after the while loop is finished to update the #timer css? It happens in IE and Firefox - I'm (still) using jQ 1.1.2. function wait(time){ $(#timer).css(display,block); time = time * 1000; var sleeping = true; var now = new Date(); var

[jQuery] Re: I thought I understood threads...(cut/paste example)

2007-07-17 Thread PragueExpat
should have posted this before - wait.html --- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; html head titleUntitled/title script language=JavaScript type=text/javascript src=/js/jquery.js/script script

[jQuery] jQuery - form plugin

2007-07-17 Thread debussy007
Hi, I am trying to understand the difference between AjaxForm and AjaxSubmit. There are some examples Here : http://www.malsup.com/jquery/form/#sample1 With some forms. But for each form, when I click Submit, I get on a dummy.php page with some text on it. It doesn't look like an Ajax call.

[jQuery] Opacity problem, IE7, Tabs plugin

2007-07-17 Thread Bruce MacKay
Hi folks, I'd greatly appreciate some help with an opacity problem (I think that's what it is) on a page where I'm using the tabs plugin: http://horticulture127.massey.ac.nz/degreecdays_test.asp When I move from one tab to another in IE7, the font quality breaks up. Any suggestions?

[jQuery] Re: Opacity problem, IE7, Tabs plugin

2007-07-17 Thread Klaus Hartl
Bruce MacKay wrote: Hi folks, I'd greatly appreciate some help with an opacity problem (I think that's what it is) on a page where I'm using the tabs plugin: http://horticulture127.massey.ac.nz/degreecdays_test.asp When I move from one tab to another in IE7, the font quality breaks up.

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-17 Thread Dan G. Switzer, II
Rey, It was a great question. I know I've been in that pinch and thats why I started archiving these emails on my box as well as downloading copies. That way, if I like the plugin and the author abandons it, I still have the code to update it with. I wonder if that's worth archiving on the

[jQuery] Re: jQuery - form plugin

2007-07-17 Thread Mike Alsup
debussy007, The difference between ajaxForm and ajaxSubmit is this: ajaxForm prepares a form to be submitted using AJAX. It binds the submit event and click events and then waits for the user to submit the form. When the user clicks the submit button it invokes ajaxSubmit on your behalf.

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-17 Thread Dan G. Switzer, II
Some potential problems with the new plugin repo include: a) Spambots are gonna figure out how to invade it at some point (probably). Yeah, that's definitely a potential issue--especially with the popularity of jQuery. b) There are nearly no controls in place to keep a malicious user from

[jQuery] Re: I thought I understood threads...Works in Opera

2007-07-17 Thread PragueExpat
Sorry to be replying to my own threads, but this just gets more interesting. Apparently, in IE and Firefox, the function must run to completion before the UI is updated with any CSS / DOM changes, but in Opera, the UI is updated immediately upon the jQ call. I was trying to get a 'waiting' gif

[jQuery] Re: I thought I understood threads...

2007-07-17 Thread PragueExpat
OK, OK, I know - I'm having a nice conversation with myself here. Just found this : http://dev.opera.com/articles/view/timing-and-synchronization-in-javascript/ Timing of Rendering Programmatic changes to the DOM or style sheet might not render

[jQuery] Re: jQuery - form plugin

2007-07-17 Thread debussy007
Thank you, if I understood correctly AjaxForm bind callback function with the submit button, and I can do some validations in this function. No, I don't see any alert, nothing, I am just forwarded to the dummy.php page, But now that I write these lines, I think it is probably the secured

[jQuery] Re: IE takes link when firing onclick event

2007-07-17 Thread Benjamin Sterling
QuEz, If you take away all your .css, does it work? Also, I am assuming it was a copy/paste error, but you are missing an ending ) Also, you should be able to combine your css tags: .css( color:'red', fontStyle:'italic', fontWeight:'bold' ) Let me know if this helps any. On 7/17/07, quez

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Benjamin Sterling
I second Erik on this, can you elaborate on your issue? Maybe send a screen shot of what you are getting? On 7/17/07, Erik Beeson [EMAIL PROTECTED] wrote: I'm not sure what problem you're having. The pages appear to render identically in FF and Safari... What about it do you think isn't

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
Erik thanks, Just had a friend test on Firefox 2 on Mac OS X, and he had no problem, are you on the same platform? I think possibly it's a Windows issue only. Created new example pages to better demonstrate. This page: http://www.logicbox.net/jquery/pricetable/index1.html The top table is

[jQuery] selectbox: change selected item

2007-07-17 Thread zenx
Hi, I don't know how to change the selected item in a selectbox. I tried this but it doesn't work as expected. HTML code: = select id=id_cliente name=cliente size=1 option value= selected=selected-/option option value=1First/option option value=2Second/option /select

[jQuery] ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
After another late night, fixing a few bugs, the code is finally ready for it's first beta release. The main new features include: * Multi-column sorting * In-line support for setting options done via the class attribute on the TH elements. * The plugin has been re-written from scratch. * Support

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Klaus Hartl
zenx wrote: Hi, I don't know how to change the selected item in a selectbox. I tried this but it doesn't work as expected. HTML code: = select id=id_cliente name=cliente size=1 option value= selected=selected-/option option value=1First/option option

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread David Duymelinck
Christian Bach schreef: After another late night, fixing a few bugs, the code is finally ready for it's first beta release. The main new features include: * Multi-column sorting * In-line support for setting options done via the class attribute on the TH elements. * The plugin has been

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
2007/7/17, David Duymelinck [EMAIL PROTECTED]: Christian Bach schreef: After another late night, fixing a few bugs, the code is finally ready for it's first beta release. The main new features include: * Multi-column sorting * In-line support for setting options done via the class

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2 [windows bug?]

2007-07-17 Thread Will Kelly
Ouch rather annoyingly googlegroups ate my reply!.. Erik thanks, I got a friend to test on FF2 on Mac OS X and he had no problems, are you on the same platform? I think possibly it's a FF Windows issue. To clarify this problem ive done a couple of new examples.

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Rick Pasotto
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote: The new 2.0 release can be found here: http://lovepeacenukes.com/tablesorter/2.0/ Interesting that the packed version is twice as large as the unpacked. :-) -- When dealing with people, remember you are not dealing with

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
Screenshot from FF2 here http://www.logicbox.net/jquery/pricetable/screen.jpg On Jul 17, 2:15 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: I second Erik on this, can you elaborate on your issue? Maybe send a screen shot of what you are getting?

[jQuery] Issue w/cloneNode(true) and form elements in IE 6/7...

2007-07-17 Thread Dan G. Switzer, II
While working on a jQuery Interface project, I came across an issue with some code using the Draggable library. It turns out in IE6 the cloneNode(true) does not properly copy the current state of all HTML elements. Checkbox, radio and select box elements all lose their current settings. I

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Dan G. Switzer, II
I don't know how to change the selected item in a selectbox. I tried this but it doesn't work as expected. HTML code: = select id=id_cliente name=cliente size=1 option value= selected=selected-/option option value=1First/option option value=2Second/option /select

[jQuery] Re: I thought I understood threads...Works in Opera

2007-07-17 Thread Stephan Beal
On Jul 17, 2:42 pm, PragueExpat [EMAIL PROTECTED] wrote: Apparently, in IE and Firefox, the function must run to completion before the UI is updated with any CSS / DOM changes, but in Opera, the UI is updated immediately upon the jQ call. Yeah, someone mentioned that behaviour a couple of

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-17 Thread Rey Bango
Thats a great idea Dan. I'll be glad to upload what I have. Let me talk to John and see what he thinks. Rey Dan G. Switzer, II wrote: Rey, It was a great question. I know I've been in that pinch and thats why I started archiving these emails on my box as well as downloading copies. That

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Dan G. Switzer, II
Christian, After another late night, fixing a few bugs, the code is finally ready for it's first beta release. Looks really good. This seems much more responsive than the previous version. The main new features include: * Multi-column sorting I'm glad to see you made the multi-column sort key

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-17 Thread Stephan Beal
On Jul 17, 2:40 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: c) The alphabetic display of plugins rewards those authors who name their plugins starting with the letter 'A', because those are the first ones which users will see when browsing the list. ... As for Issue C, I think most

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
2007/7/17, Rick Pasotto [EMAIL PROTECTED]: On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote: The new 2.0 release can be found here: http://lovepeacenukes.com/tablesorter/2.0/ Interesting that the packed version is twice as large as the unpacked. :-) Yeah, packer doesn't

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
I'm glad to see you made the multi-column sort key configurable. My instinct was to use the [CTRL] key, not the [SHIFT] key (although I know Outlook uses the [SHIFT] key.) Tablesorter can be configured to use either SHIFT or CTRL, all though SHIFT is default. Here is a example on how to

[jQuery] Re: Issue w/cloneNode(true) and form elements in IE 6/7...

2007-07-17 Thread Brandon Aaron
Would you mind reposting this over on the Dev list? It would be nice to get that bug knocked out for good already. -- Brandon Aaron On 7/17/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: While working on a jQuery Interface project, I came across an issue with some code using the Draggable

[jQuery] [OT] Importing jQuery mailing list archives

2007-07-17 Thread Rodrigo Moraes
Hi, This is not directly related to jQuery, but to this mailing list. Sorry for the off-topic. I'd like to know how did you moved the entire mailing list archives to Google Groups. Were the messages re-sent or...? I'm asking because people from another project I'm involved is considering to

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Alexandre Plennevaux
excellent job christian, i have one bug to report: consider this html if the tr element contains inline styles such as: tr style=background-color:red once sorted, the style is removed. not a biggie, but can be annoying. cheers! Alexandre _ From:

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-17 Thread Dan G. Switzer, II
Two words: google rating As far as search engines go, reportedly most people don't look past the first 3 entries if they find something suitable, and the vast majority of people never look past the first page of results. Maybe I'm giving jQuery Developers too much credit, but I would think the

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
excellent job christian, Thanks! i have one bug to report: consider this html if the tr element contains inline styles such as: tr style=background-color:red once sorted, the style is removed. I did a quick test, and the style attribute was not removed, perhaps the style is

[jQuery] IE Problems

2007-07-17 Thread mister
I have a bit of code that works just fine in Firefox but does nothing Internet Explorer. Right now, I am using the JQuery tabs plugin, remotely calling a page that displays various links. These links are the links that I am using in my code. They use another page and return the results in a

[jQuery] Re: search text, find urls and list

2007-07-17 Thread Hugh Hayes
Hi Karl- Thanks. I really appreciate it. I've got (I think) syntax errors. The firefox console is telling me missing } after function body \n - it seems to be the last line of the code and no matter what combination of characters I use there. Here's what I've got: script

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-17 Thread Jeffrey Kretz
Thank you very much, that solved the problem. As a note, I tweaked the solution slightly and it is a bit simpler and works just fine: // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null event.clientX != null ) { var e = document.documentElement, b =

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Rick Pasotto
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote: After another late night, fixing a few bugs, the code is finally ready for it's first beta release. The main new features include: * Multi-column sorting * In-line support for setting options done via the class attribute on

[jQuery] ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Hi, Did some updates to the way the horizontal accordion works. You can find the new download and example here: http://dev.portalzine.de/index?/Horizontal_Accordion--print I will be moving this to a plugin for a more generic approach for version 0.6. Enjoy Alexander

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Klaus Hartl
Dan G. Switzer, II wrote: I don't know how to change the selected item in a selectbox. I tried this but it doesn't work as expected. HTML code: = select id=id_cliente name=cliente size=1 option value= selected=selected-/option option value=1First/option option

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Rey Bango
Did the video help, Alexander? Also, upon initial load, it appears as if the container div shifts to the left and the reshifts to the right. Overall, it works much better on this go round. Awesome work. Rey Alexander Graef wrote: Hi, Did some updates to the way the horizontal accordion

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Tane Piper
Thats much nicer! I tried to play about with your plugin this morning, wasn't working very well in my layout - but I'll give it a try once it's been made a bit more generic. Thanks On 7/17/07, Alexander Graef [EMAIL PROTECTED] wrote: Hi, Did some updates to the way the horizontal

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
pro.portalZINE(R) - customized experience http://pro.portalzine.de -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com __ NOD32 2402 (20070717) Information __ This message was checked by NOD32

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Rey Bango
Another odd behavior that seems isolated to IE. If I hover over any of the panels prior to the page fully loading, you'll see them kind of animate and move around. To replicate, just do a hard refresh and as soon as you see the panels, staty hovering over them. Rey Alexander Graef wrote:

[jQuery] Re: Autocomplete - form elements in IE

2007-07-17 Thread Shelane
Apparently, I didn't have the latest version of bgiframe. BTW, the documentation still lists the dimensions plugin as a required plugin. This was changed, correct? On Jul 16, 3:20 pm, Shelane Enos [EMAIL PROTECTED] wrote: For the lastest version of the autocomplete plugin

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Andy Matthews
Ah yes...the text box is much better looking this time. Plus you resolved that display issue with using show/hide. Only one additional comment..I'd like to see the thing feel more responsive. Currently you're completely closing one blade before opening another. Any chance of closing one and

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-17 Thread Scott Sauyet
Two questions I had when starting with jQuery, and glancing through the API docs, I still don't see them documented (maybe in a tutorial?): (1) How do you select an element by its ID? (2) How do you select all elements given a CSS class? This leads to an interesting documentation question:

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
Looks promising but I'm having a little problem with numeric sorting. Here's my invocation and the table header. $(function() { $(#listclubs).tablesorter(); }); theadtr th class={sorter:'integer'}ID#/th thClub Name/th thArea/th thType/th thCharter/th /tr/thead When the

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-17 Thread Scott Sauyet
Richard D. Worth wrote: New wiki page: http://docs.jquery.com/Frequently_Asked_Questions This is great! I think there should be a link to this from the Getting Started list on the documentation page. I don't have authorization to edit the Main Page or whatever template is used, or I

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Rick Pasotto
On Tue, Jul 17, 2007 at 11:01:55AM -0400, Rick Pasotto wrote: On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote: After another late night, fixing a few bugs, the code is finally ready for it's first beta release. The main new features include: * Multi-column sorting *

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
) - customized experience http://pro.portalzine.de -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com __ NOD32 2402 (20070717) Information __ This message was checked by NOD32 antivirus system. http

[jQuery] Re: blockUI plugins consume too much CPU

2007-07-17 Thread Jiming
Hi Mike, I am using Windows2000/XP, and browser is IE6/IE7/Firefox2. The url you can try is http://peds2.caitco.com, this is a chinese version, hope . Please just try it at random:) When we using a powerful CPU, it is not a problem. For example my PC's CPU is AMD2600+. And it only consume

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Dan G. Switzer, II
Using my Field plug-in (http://jquery.com/plugins/project/field) you could do: $(#id_cliente).setValue(2); The big benefit to using my Field plug-in is that you can change the form field from a select box to a checkbox or radio element and you would not have to refactor code that

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
://www.portalzine.de dev.portalZINE(R) - all about development http://dev.portalzine.de http://dev.portalzine.de pro.portalZINE(R) - customized experience http://pro.portalzine.de __ NOD32 2402 (20070717) Information __ This message was checked by NOD32 antivirus system. http

[jQuery] Re: blockUI plugins consume too much CPU

2007-07-17 Thread Mike Alsup
Hmm, my corporate firewall won't let me access that site. Something you can try is to override the opacity by setting the overlayCSS.opacity value to 0 or 1. For example: $.blockUI.defaults.overlayCSS.opacity = 0; - or - $.blockUI.defaults.overlayCSS.opacity = 1; This will tell you if it is

[jQuery] Re: blockUI plugins consume too much CPU

2007-07-17 Thread Alexandre Plennevaux
I add once an issue with internet explorer 6 and opacity. I was using a 1pxX1px transparent image. CPU was turned into lava until i switched to a 200x200px transparent image. Hope this helps somehow -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Mike Alsup
Klaus, As Dan pointed out, his Field plugin is very adept at getting, setting and otherwise manipulating data for field elements and Dan is adding new capabilities regularly. The Form plugin is mostly geared at providing ajax capabilities for the submit process. It also provides methods for

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Jack Killpatrick
This looks really nice. Some feedback: 1. I expect the contents to open to the right of it's header, not to the left. Is that configurable? And if not, it'd be nice if you can make it so (when you make it a plugin). 2. when clicking the header for an item that's already open, I don't see

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread Klaus Hartl
Mike Alsup wrote: Klaus, As Dan pointed out, his Field plugin is very adept at getting, setting and otherwise manipulating data for field elements and Dan is adding new capabilities regularly. The Form plugin is mostly geared at providing ajax capabilities for the submit process. It also

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-17 Thread Christian Bach
Immediately after sending the above I think I realized what the problem is. Each of the numeric values in that first column is wrapped in a/a and you're probably sorting on that. Do I need to write a parser? If so, what might it be? This should work: $.tablesorter.addParser({ id:

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-17 Thread Richard D. Worth
I don't know if you saw, but there is a link on that page (as well as the left sidebar - all pages). It's not under Getting Started, but under Support. - Richard On 7/17/07, Scott Sauyet [EMAIL PROTECTED] wrote: Richard D. Worth wrote: New wiki page:

[jQuery] ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Hi, Did some updates to the way the horizontal accordion works. You can find the new download and example here: http://dev.portalzine.de/index?/Horizontal_Accordion--print I will be moving this to a plugin for a more generic approach for version 0.6. Enjoy Alexander

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
://www.portalzine.de dev.portalZINE(R) - all about development http://dev.portalzine.de http://dev.portalzine.de pro.portalZINE(R) - customized experience http://pro.portalzine.de __ NOD32 2402 (20070717) Information __ This message was checked by NOD32 antivirus system. http

[jQuery] repeated click when using .show(slow)

2007-07-17 Thread mmjaeger
Hello, I've a link I'm using .show(slow) - it works fine unless I click repeatedly fast on the link - re-clicking the link while the effect is still running leads to weird results - is there a way to cancel the running effect before applying the new one or what's the best way to handle something

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-17 Thread Scott Sauyet
Richard D. Worth wrote: http://docs.jquery.com/Frequently_Asked_Questions This is great! I think there should be a link to this from the Getting Started list on the documentation page. I don't know if you saw, but there is a link on that page (as well as the left sidebar - all pages).

[jQuery] Form in Thickbox window

2007-07-17 Thread sccr410
I have a form with JavaScript validation. It is displayed in a Thickbox window and pulled from an inline div (initially hidden). For some reason, the JS form validation doesn't work. I believe it is because the ID or NAME attribute of the form elements are being changed somehow to create the

[jQuery] Behavior Problem

2007-07-17 Thread DXCJames
I added addClass to the behavior class, so it will recall the behaviors when addClass is called.. but they spans start out as .codeNumbersRow then you click on it and it runs the function turns it into .codeNumbersRowSelected, but for some reason when you try and click on it again it

[jQuery] Re: search text, find urls and list

2007-07-17 Thread Richard D. Worth
On 7/17/07, Hugh Hayes [EMAIL PROTECTED] wrote: $extLinks.appendTo(#content); )}; It looks like the right paren ) and right curly brace } here are switched. - Richard

[jQuery] Announce: filemanager-like-view plugin (BogoFolders)

2007-07-17 Thread Stephan Beal
Hi, all! This morning i put together a plugin which provides a basic filemanager-like view, called BogoFolders: http://wanderinghorse.net/computing/javascript/jquery/bogofolders/ In short, it uses two HTML elements: one holds a list of icons/label (e.g., the file list) and one holds the

[jQuery] Re: Behavior Problem

2007-07-17 Thread Brandon Aaron
Behavior binds the events (in this case a click event) for you and listens for major DOM modifications (such as adding an element) and binds the events to new elements that match the selector. In your example the only thing that changes is the class name. But lets say you made a major DOM

[jQuery] Re: search text, find urls and list

2007-07-17 Thread Karl Swedberg
Hi Hugh, Ah, yes, looks like you're missing the line with }); that should come right before $extLinks.appendTo('#content'); It's needed there to close the .each() Try copy/pasting this: script src=http://www.helderberg-bmdc.org/scripts/jquery.js; type=text/javascript/script script

[jQuery] Re: IE ONLY warning on fadeIn

2007-07-17 Thread [EMAIL PROTECTED]
Nicely done, thanks. On Jul 16, 6:19 pm, Dave Methvin [EMAIL PROTECTED] wrote: On Jul 16, 5:23 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I keep getting an error in the IE browsers (6 7). Error: Can't move focus to the control because it is invisible, not enabled, or of a type

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
__ NOD32 2402 (20070717) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Jean
Great Job!!! And great design for the accordion ;D On 7/17/07, Alexander Graef [EMAIL PROTECTED] wrote: Hi, Did some updates to the way the horizontal accordion works. You can find the new download and example here: http://dev.portalzine.de/index?/Horizontal_Accordion--print I will be

[jQuery] Re: Compressed BlockUI plugin?

2007-07-17 Thread Ganeshji Marwaha
thanks aaron, just in case you need my email, it is ganeshread at gmail dot com. -GTG On 7/17/07, Aaron Porter [EMAIL PROTECTED] wrote: I'll try to package it up and make it available tomorrow. Aaron Ganeshji Marwaha wrote: Aaron, I would like the jar file... I want to integrate this

[jQuery] Re: Behavior Problem

2007-07-17 Thread DXCJames
I switched it to this and it seems to work correctly: $(.codeNumbersRow, .codeNumbersRowSelected).behavior('click', function() { var rem = ; var add = ; if($(this).attr('class') == codeNumbersRowSelected) rem = Selected;

[jQuery] Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
Hi again, all! Confirmer is a plugin for jQuery which implements a novel approach to the process of confirming an action. Normally this is achieved via a yes/no dialog box or a button with a confirm checkbox next to it. The Confirmer plugin instead sets up a single button which changes to a

[jQuery] Re: selectbox: change selected item

2007-07-17 Thread zenx
Klaus, Dan, thank you for your help. I tried both ways and they worked correctly. I think I will use the Field plugin for many things in the future. Thank you! On 17 jul, 18:37, Klaus Hartl [EMAIL PROTECTED] wrote: Mike Alsup wrote: Klaus, As Dan pointed out, his Field plugin is very

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Tane Piper
Very handy! Will be very useful for actions such as deleting. I'll be trying this one out. On 7/17/07, Stephan Beal [EMAIL PROTECTED] wrote: Hi again, all! Confirmer is a plugin for jQuery which implements a novel approach to the process of confirming an action. Normally this is achieved

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Michael Geary
Very cool idea. Anything to get rid of confirmation dialogs! I see one problem: Many people habitually double-click everything - links, buttons, you name it. If you double-click the button, the second click ends up confirming it. You could avoid this by disabling the button for a second with a

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
On Jul 18, 12:35 am, Tane Piper [EMAIL PROTECTED] wrote: Very handy! Will be very useful for actions such as deleting. I'll be trying this one out. Deleting is EXACTLY the reason i wrote it. i have an app with a Delete all button and a Confirm checkbox next to it (because i didn't know that

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
On Jul 18, 12:40 am, Michael Geary [EMAIL PROTECTED] wrote: Very cool idea. Anything to get rid of confirmation dialogs! i didn't come up with the idea myself (of course). There is/was some mail client (can't remember which) which uses/used a similar idea when you move a mail to the trash.

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Felix Geisendörfer
Cool idea. Just add support for a class that's being added to the button when in 'confirm' mode - otherwise there is no way to visually highlight this new UI approach for the user ; ). -- Felix -- My Blog: http://www.thinkingphp.org My Business:

[jQuery] Resizable textarea

2007-07-17 Thread Mark
Does anyone could combine a textarea with a Drag and Resize plugin to create a Resizable Textarea. (A feature like this is available in TinyMCE). Thanks. Mark

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
On Jul 18, 12:47 am, Felix Geisendörfer [EMAIL PROTECTED] wrote: Cool idea. Just add support for a class that's being added to the button when in 'confirm' mode - otherwise there is no way to visually highlight this new UI approach for the user ; ). My initial thought was to use an onclick

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Ganeshji Marwaha
Stephan, In the demo, once i click, the action gets cancelled too quickly before i understand that i need to click it again... Also, i guess it is pretty difficult to explain this to the user... There should be some other way, instead of just time before which the event is cancelled. Just

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Ganeshji Marwaha
Just minutes after typing the email for u, i realized that i had seen a pretty cool site from which your plugin can gather some inspiration. This site allows you to completely interact with any UI without any clicks at all. Along similar lines, once a user clicks the button, an extention slides

  1   2   >