Re: [jQuery] Interface Sortable - onchange not firing first time

2007-02-03 Thread rcarlos21
I was having the same problem. I found out that the problem wasn't really the fact that it wasn't calling onChange() on the first change but rather that it calls onChange with those changes on the next successive change. Say I started with a list: Item 1 --- Item 2 --- Item 3 --- Item 4 ---

Re: [jQuery] Interface Sortable - onchange not firing first time

2007-02-03 Thread Stefan Petre
This bug is already fixed in SVN rcarlos21 wrote: I was having the same problem. I found out that the problem wasn't really the fact that it wasn't calling onChange() on the first change but rather that it calls onChange with those changes on the next successive change. Say I started with

Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-02-03 Thread Daniel Srb
On 2/2/07, Austin Schutz [EMAIL PROTECTED] wrote: I was unable to get the video portion to play back in any media player using any codec. Use VLC media player (http://www.videolan.org/vlc/) -- Daniel Srb ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-03 Thread Alexandre Plennevaux
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: vendredi 2 février 2007 22:16 To: jQuery Discussion. Subject: [jQuery] ANNOUNCE: New jQuery Project Team Members The jQuery team would like to welcome our newest team members, Yehdua Katz,

Re: [jQuery] jqModal

2007-02-03 Thread Alexandre Plennevaux
Hi Brice! You said you need some design assistance. Let me know what you need and i'll gladly help out! In fact i modified jqModal to suit my need, i just parse the uri, and if it is not null, i redirect the page to it. But your solution is better: fetch the content via ajax. Still it is

[jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Joel Birch
Hi everyone. I want to report this issue. It's an animation bug that only occurs in Mac Firefox and somehow relates to old known issues that it has with opacity and text-rendering. I would worry that this bug is unfixable for Mac Firefox *except* that it did not occur using jQuery Rev.

Re: [jQuery] history/remote question

2007-02-03 Thread Vaska
As I understand you want to send requests like this to the sever via Ajax: /index.php?hash=/project/things/ You could do that by simply using these links: a class=remote href=/index.php?hash=/project/things/Link/a plus remote plugin: $('a.remote').remote('#output'); But the hash

Re: [jQuery] Konqueror Issues

2007-02-03 Thread Jörn Zaefferer
Andrew Mason schrieb: On Thursday February 1 2007 06:59:08 pm Jörn Zaefferer wrote: Andrew Mason schrieb: Hello all, I was just wondering if the Known Konqueror issues are issues with konqueror (3.5.6?) or are issues with Jquery ? I am a fan of Konq and so which ever piece of

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Stéphane Nahmani
On 3 févr. 07, at 11:46, Joel Birch wrote: Please look at my test page as it explains the bug fully, I hope. Well, and then things get interesting. I've tested all 3 pages on FF 2.0.0.1 on my fairly slow PB G4 12 1.5GHz, and the animations are the same in each case. The only actual flicker

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Joel Birch
On 03/02/2007, at 10:21 PM, Stéphane Nahmani wrote: The only actual flicker i see is when the page loads: the image at its smallest size turns off, back on, and then starts scaling. This describes the flicker I am referring to perfectly so thanks for that. It only ever occurs after page

[jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Jörn Zaefferer
For anyone using the Accordion menu plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ ), or looking for it: Version 1.1 is out! This includes all bug fixes since the first release, update to jQuery 1.1, and an overhaul of the plugin page, including documentation. A zip

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Stéphane Nahmani
On 3 févr. 07, at 12:33, Joel Birch wrote: It only ever occurs after page load. Interesting that it occurs on all 3 pages for you. Very, um, interesting. [scratches head]. My bad! I missed the first time mention in your summary, so i was looking for flickering with every image. You are

Re: [jQuery] Bug in $() in jQuery v1.1.1?

2007-02-03 Thread Jörn Zaefferer
Stéphane Nahmani schrieb: On 30 janv. 07, at 22:27, Jörn Zaefferer wrote: In case you want to test it with your copy of jQuery, modify pushStack to look like this: pushStack: function( a ) { var ret = jQuery(a); ret.prevObject = this; return ret; }, Fwiw, i

[jQuery] scrollable table with fixed (but flexible :P ) headers

2007-02-03 Thread Miel Soeterbroek
Hey guys, I want to put a large data table in a (fixed-size) container div, to make it a scrollable table. Doing this for a fixed width table isn;t quite hard, but the width of my table is not fixed at all. I now have two divs, both containing its own table. Top div table contains one row (the

Re: [jQuery] history/remote question

2007-02-03 Thread Vaska
With a very small change in the source code and the use of an undocumented function ( history(); ) in Klaus' script, I am able to have custom #hash values as they are represented in my href and use my own call to Ajax...the history mechanism seems to work perfectly... I simply adjusted line

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Joel Birch
On 03/02/2007, at 10:48 PM, Stéphane Nahmani wrote: My bad! I missed the first time mention in your summary, so i was looking for flickering with every image. You are right, the page with version 1.0.4 doesn't show that first time flicker. Stéphane, I have adjusted the test pages to

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread David
Jörn Zaefferer schreef: For anyone using the Accordion menu plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ ), or looking for it: Version 1.1 is out! This includes all bug fixes since the first release, update to jQuery 1.1, and an overhaul of the plugin page,

Re: [jQuery] Bug in $() in jQuery v1.1.1?

2007-02-03 Thread Stéphane Nahmani
On 3 févr. 07, at 12:50, Jörn Zaefferer wrote: Could you try version 1.1 of the plugin? http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ It should work fine now. Hello Jörn, Thanks for the new version. However, the issue is still the same if i use the SVN modified version of

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Alexandre Plennevaux
Thank Jörn, The demo page does not work for me :( http://jquery.bassistance.de/accordion/accordionDemo.html# I'm on FF 2.0.0.1 on winXPSP2 Thanks alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: samedi 3 février 2007 12:47

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Jörn Zaefferer
David schrieb: The demo page isn't working. the jquery file isn't linked right. Beginner mistake for the advanced :) Heh, fixed! -- Jörn Zaefferer http://bassistance.de ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Bug in $() in jQuery v1.1.1?

2007-02-03 Thread Jörn Zaefferer
Stéphane Nahmani schrieb: Thanks for the new version. However, the issue is still the same if i use the SVN modified version of JQuery (unpacked). I'm sending you a coupl of screenshots offlist, so you can see what i mean. Could you please try the latest revision of jQuery? I've

Re: [jQuery] Bug in $() in jQuery v1.1.1?

2007-02-03 Thread Stéphane Nahmani
On 3 févr. 07, at 14:13, Jörn Zaefferer wrote: Could you please try the latest revision of jQuery? I've uploaded it here, in case you don't have svn access: Actually i don't. I tried with this version, and the issue remains as before. I'm wondering if this could be related to the fact that

[jQuery] css(padding-left);

2007-02-03 Thread Alexandre Plennevaux
hello, i would like to set the css property padding-left. So far it fails. I can assign a value to padding, but not to padding-left. Can you explain me how? does jquery support css shorthand (padding:0 0 0 5px) ? thanks Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte

Re: [jQuery] Interesting plugin idea if anyone is interested for jquery

2007-02-03 Thread Abel Tamayo
The one that uses bars seems to be quite easy. On 2/2/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Woow, nice! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Woodbridge Sent: vendredi 2 février 2007 17:37 To: jQuery Discussion. Subject:

[jQuery] Get a parameter from a link

2007-02-03 Thread Johannes Theile
Hi, the following scenario: I have several links in a part of the page which was previously loaded by load(). When I click one of these links another part of the page should be loaded, with a parameter which should come from the link. At this time the loading I think shouldn't be a problem. The

Re: [jQuery] Get a parameter from a link

2007-02-03 Thread Klaus Hartl
Johannes Theile schrieb: Hi, the following scenario: I have several links in a part of the page which was previously loaded by load(). When I click one of these links another part of the page should be loaded, with a parameter which should come from the link. At this time the loading I

Re: [jQuery] scrollable table with fixed (but flexible :P ) headers

2007-02-03 Thread Miel Soeterbroek
I managed to get the headers moving now (forgot the 'px' suffix :S ) It does work as i wanted now, only thing is the alignment of the two table columns. It's about 2px off (per column..)... Does anyone have any tips on how to get the two tables aligned in a better way? Thanks, Miel see

Re: [jQuery] Get a parameter from a link

2007-02-03 Thread Johannes Theile
Hi, Klaus Hartl wrote: Johannes, can't you just use a query parameter? Your description sounds exactly like this is what you need. sorry, but currently it is unclear to me, what you mean by a query parameter. A parameter which is attached to the URL? Maybe you could give me a hint and how

Re: [jQuery] Get a parameter from a link

2007-02-03 Thread Klaus Hartl
Johannes Theile schrieb: Hi, Klaus Hartl wrote: Johannes, can't you just use a query parameter? Your description sounds exactly like this is what you need. sorry, but currently it is unclear to me, what you mean by a query parameter. A parameter which is attached to the URL? Maybe

Re: [jQuery] Queueing animations

2007-02-03 Thread Dmitry Rudakov
Jörn Zaefferer wrote: jQuery already queues animations and lacks the ability to stop this queue. I'm not sure about your request: Do you want to prevent new animations when one is already running? Do you know if this any kind of stop queue animation will be implemented in JQuery in the

Re: [jQuery] css(padding-left);

2007-02-03 Thread Joan Piedra
$(el).css('padding','0 0 0 5px'); $(el).css('paddingLeft','5px'); They both works fine. On 2/3/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello, i would like to set the css property padding-left. So far it fails. I can assign a value to padding, but not to padding-left. Can you

Re: [jQuery] css(padding-left);

2007-02-03 Thread Klaus Hartl
Joan Piedra schrieb: $(el).css('padding','0 0 0 5px'); $(el).css('paddingLeft','5px'); They both works fine. And $(el).css({'padding-left': '5px'}); will also. I assume you tried css({padding-left: '5px'}), which will not work because of the - in the property name, so have to put quotes

Re: [jQuery] Get a parameter from a link

2007-02-03 Thread Johannes Theile
Hi Klaus, thanks for your effort. I tried your code and it works. But, there still is a problem. When I click one of these links it only outputs the query parameter of the first link. No matter which link I click I always get the value first one. Any way to change this? Regards, Johannes

Re: [jQuery] Get a parameter from a link

2007-02-03 Thread Klaus Hartl
Johannes Theile schrieb: Hi Klaus, thanks for your effort. I tried your code and it works. But, there still is a problem. When I click one of these links it only outputs the query parameter of the first link. No matter which link I click I always get the value first one. Any way to

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-03 Thread rolfsf
With all that I've seen them contribute, I thought they were already part of the team! Congratulations! Rey Bango-2 wrote: The jQuery team would like to welcome our newest team members, Yehdua Katz, Nate Cavanaugh, Klaus Hartl. These three developers have made invaluable contributions

Re: [jQuery] OT: Cancel event's default action in Firefox

2007-02-03 Thread Paul Bakaus
Hi, I actually had the same problem some weeks before. I still haven't found any solution for this, so far preventDefault and returning false doesn't fix the problem.. -Paul 2007/2/3, Matt Stith [EMAIL PROTECTED]: Heh, never heard about that ctrl+click feature in firefox, ill probly be using

[jQuery] 3oh scroller by youngpup

2007-02-03 Thread Alexandre Plennevaux
would someone be able to implement this in jquery? HYPERLINK http://webapp.youngpup.net/demos/threeoh-scroller/http://webapp.youngpup.net/demos/threeoh-scroller/ i found these scrollbars + shortcuts to be awesome! alex -- Ce message Envoi est certifié sans virus connu. Analyse effectuée

Re: [jQuery] Interface Sortable - onchange not firing first time

2007-02-03 Thread WG
When is the interface.js going to be updated with the latest changes? thanks - wg - Original Message From: Stefan Petre [EMAIL PROTECTED] To: jQuery Discussion. discuss@jquery.com Sent: Saturday, February 3, 2007 12:28:13 AM Subject: Re: [jQuery] Interface Sortable - onchange not

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-03 Thread Jonathan Sharp
Jörn, Thanks for all of your feedback! Those are excellent pointers and will help greatly in the refactor! Thanks again! -Jonathan On 2/2/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jonathan Sharp schrieb: I'm just starting on a refactor of this code and am making several improvements

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Jan Hendrik Mangold
On Jan 25, 2007, at 6:46 AM, Mike Alsup wrote: This may have already been dicussed, but I just now noticed it. Has anyone looked at http://joern.jquery.com/api-draft/cat.xml#cat recently? It now contains the different sections of the API in a collapsible tree-view. I agree. It's

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Jörn Zaefferer
Joan Piedra schrieb: lol, firebug still gives me an error Wow, I really screwed that release. Sorry. I think I got it working now :-) -- Jörn Zaefferer http://bassistance.de ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Jörn Zaefferer
Jan Hendrik Mangold schrieb: On Jan 25, 2007, at 6:46 AM, Mike Alsup wrote: This may have already been dicussed, but I just now noticed it. Has anyone looked at http://joern.jquery.com/api-draft/cat.xml#cat recently? It now contains the different sections of the API in a collapsible

Re: [jQuery] Queueing animations

2007-02-03 Thread Jörn Zaefferer
Dmitry Rudakov schrieb: Do you know if this any kind of stop queue animation will be implemented in JQuery in the nearest future or I should not to hope for it? A reworked FX module is one of the main goals of jQuery 1.2. And that should include stop queued animations. -- Jörn Zaefferer

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Alexandre Plennevaux
Jörn, Nice work!! If you don't mind my nitpicking, i find it disturbing that there is no closing animation. It makes the whole object jump, which makes it hard for the eye, as you have to pay attention on to where you clicked. Still, already nice to have it as such! Alex -Original

Re: [jQuery] css(padding-left);

2007-02-03 Thread Brice Burgess
Alexandre Plennevaux wrote: hello, i would like to set the css property padding-left. So far it fails. I can assign a value to padding, but not to padding-left. Can you explain me how? does jquery support css shorthand (padding:0 0 0 5px) ? One thing I noticed when dealing with

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Alexandre Plennevaux
Jörn, i would like to make a firefox extension to search into the jquery api, what would be the url for the search in your API, along with the query variable name? Thanks alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: samedi

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-03 Thread Jörn Zaefferer
Alexandre Plennevaux schrieb: If you don't mind my nitpicking, i find it disturbing that there is no closing animation. It makes the whole object jump, which makes it hard for the eye, as you have to pay attention on to where you clicked. I don't mind your nitpicking! No worries, eh? I'm

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Jörn Zaefferer
Alexandre Plennevaux schrieb: Jörn, i would like to make a firefox extension to search into the jquery api, what would be the url for the search in your API, along with the query variable name? I don't think the current browser supports that, I wouldn't know how. I can imagine setting up

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-03 Thread Klaus Hartl
Jörn Zaefferer schrieb: css() automatically adds px to values passed as a number, where appropiate (it excludes eg. opacity and z-index), so you don't need to add that in your code. Does it exclude line-height? You can declare line-height unitless (line-height: 1 and line-height: 1em is not

Re: [jQuery] 3oh scroller by youngpup

2007-02-03 Thread Sam Sherlock
thats a blast from the past. try this http://interface.eyecon.ro/demos/scrollbar.html On 03/02/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: would someone be able to implement this in jquery? http://webapp.youngpup.net/demos/threeoh-scroller/ i found these scrollbars + shortcuts to be

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-03 Thread Jörn Zaefferer
Klaus Hartl schrieb: Jörn Zaefferer schrieb: css() automatically adds px to values passed as a number, where appropiate (it excludes eg. opacity and z-index), so you don't need to add that in your code. Does it exclude line-height? You can declare line-height unitless

Re: [jQuery] 3oh scroller by youngpup

2007-02-03 Thread Kelvin Luck
Or this one: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html When I get a chance I'll look at adding some scroll to functionality to it, Cheers, Kelvin :) Sam Sherlock wrote: thats a blast from the past. try this http://interface.eyecon.ro/demos/scrollbar.html On

Re: [jQuery] 3oh scroller by youngpup

2007-02-03 Thread Jörn Zaefferer
Alexandre Plennevaux schrieb: would someone be able to implement this in jquery? http://webapp.youngpup.net/demos/threeoh-scroller/ i found these scrollbars + shortcuts to be awesome! Scrollbars (even with mousewheel support) are covered by jScrollPane:

Re: [jQuery] problem with mootools like top navigation

2007-02-03 Thread abba bryant
I had considered that and since this was just something I threw together so the poster would have a starting point less broken than the other example posted. Thanks for the work on it though, the code is much cleaner and the jumping is fixed. Now I might need to use it somehow. Abba John Resig

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread abba bryant
The current official release does not work in IE6. There are no scrollbars and as a result only the top 1 page of content is accessible. Jörn Zaefferer wrote: Alexandre Plennevaux schrieb: Jörn, i would like to make a firefox extension to search into the jquery api, what would be the url

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Alexandre Plennevaux
Just to be sure we understand each other, i meant a firefox SEARCH ENGINE extension :) Your solution seems fine to me! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: samedi 3 février 2007 19:15 To: jQuery Discussion. Subject: Re:

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Jörn Zaefferer
abba bryant schrieb: The current official release does not work in IE6. There are no scrollbars and as a result only the top 1 page of content is accessible. True. If anyone sends me the necessary CSS hacks, I'd be happy to include them. Until then, I don't really care. -- Jörn Zaefferer

Re: [jQuery] 3oh scroller by youngpup

2007-02-03 Thread David
IMHO the scroll to functionality can be added best using anchors instead of the home-made description attribute. The placing of the links is nice though. David Kelvin Luck schreef: Or this one: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html When I get a chance I'll

Re: [jQuery] API-Draft Looks great!

2007-02-03 Thread Jörn Zaefferer
Alexandre Plennevaux schrieb: Just to be sure we understand each other, i meant a firefox SEARCH ENGINE extension :) Sure, but as far as I undertand that, you need some hook to get the search you entered in Firefox into the underlying engine. For Google, it adds the term you entered to the

Re: [jQuery] Thickbox modifications

2007-02-03 Thread James Thomas
Hey Brice - I took a look at jqModal actually and I like it for modal windows - was thinking of using it actually. One of my key requirements is that it had to sometimes use an iframe, sometimes ajax, and sometimes DOM. I was already using Thickbox here and there and decided it would be a good

Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-02-03 Thread Dan Atkinson
Hey. I have to see that it seems odd that you chose MP4 as the method to show it to the world. Would it not have been easier to make it an FLV? John Resig wrote: A new screencast is up that takes an introductory look at using the Firebug Firefox Extension and jQuery together - combining

Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-02-03 Thread John Resig
Dan - I also converted it to FLV, but the quality was incredibly poor - you couldn't make out the text. --John On 2/3/07, Dan Atkinson [EMAIL PROTECTED] wrote: Hey. I have to see that it seems odd that you chose MP4 as the method to show it to the world. Would it not have been easier to

Re: [jQuery] problem with mootools like top navigation

2007-02-03 Thread abba bryant
Sharanbrar, Using the code john rewrote from deeper in this thread and the mootools art and css I have a zip file that works about as closely to the mootools menu as I could get. The animations stack up - unlike the mootools menu - but the rest is working now. One note, the positions have to be

Re: [jQuery] problem with mootools like top navigation

2007-02-03 Thread abba bryant
Here is a second page using the limitqueue plugin. This works even more as expected compared to the mootools menu. http://www.nabble.com/file/6230/moo_menu_limited.zip moo_menu_limited.zip -- View this message in context:

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Brandon Aaron
Please upgrade to the latest SVN as it fixes the flicker. -- Brandon Aaron On 2/3/07, Joel Birch [EMAIL PROTECTED] wrote: Hi everyone. I want to report this issue. It's an animation bug that only occurs in Mac Firefox and somehow relates to old known issues that it has with opacity and

[jQuery] problem with metadata plugin and new version?

2007-02-03 Thread abba bryant
http://joern.jquery.com/metadata/metadataTest.html I was just poking around and noticed the metadata tests on joerns subdomain are all failing. Abba -- View this message in context: http://www.nabble.com/problem-with-metadata-plugin-and-new-version--tf3167832.html#a8787783 Sent from the

Re: [jQuery] problem with metadata plugin and new version?

2007-02-03 Thread Jörn Zaefferer
abba bryant schrieb: http://joern.jquery.com/metadata/metadataTest.html I was just poking around and noticed the metadata tests on joerns subdomain are all failing. Abba Updated. Any way, the files in the subversion repository are most likely more up to date then anythin uploaded

Re: [jQuery] 3oh scroller by youngpup

2007-02-03 Thread Sam Sherlock
I have been a fan of youngpup (aaron boodman) for some time, I love his ypXmlTree which I am still using to date. This is the guy that openned my eyes to things like wyiwyg concepts. I am not the most majical of jquerians somewhat I keen novice A far as I see this could be put together with

[jQuery] thickbox improvements

2007-02-03 Thread Alexandre Plennevaux
Some nice hacks have been proposed on the thickbox forum recently. If you are interested (maybe some interest for jqModal and other modal window scripts) - work with proportional width and height; - remove the browser scrollbars without having the page jump; more here: HYPERLINK

[jQuery] IE PNG hack

2007-02-03 Thread Kush Murod
Hi guys, I've wrote very simple JQuery IE PNG hack plugin. Would like to know your professional opinion, to make it better http://nemoweb.com.au/jquery/IEPNGHack/ Cheers, Kush ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Joel Birch
On 04/02/2007, at 9:06 AM, Brandon Aaron wrote: Please upgrade to the latest SVN as it fixes the flicker. -- Brandon Aaron Hi Brandon. After a long and gruelling battle with my old nemesis, the SVN repository, I seem to have managed to get the latest SVN and it does indeed seem to fix

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Brandon Aaron
On 2/3/07, Joel Birch [EMAIL PROTECTED] wrote: Hi Brandon. After a long and gruelling battle with my old nemesis, the SVN repository, I seem to have managed to get the latest SVN and it does indeed seem to fix the flicker. I assume you were responsible for the fix so thank you greatly. Yes,

Re: [jQuery] IE PNG hack

2007-02-03 Thread Rey Bango
Hi Kush, This is very cool if you're working with a large number of pngs. I can definitely see the advantage to using it. Since IE7 already fixes this, you might consider refactoring your plugin to bypass IE7. Certainly not to diminish your effort, which I think is really great, but if you're

Re: [jQuery] BUG occurs with jQ 1.1.1 and Mac FF only. Related to opacity.

2007-02-03 Thread Joel Birch
On 04/02/2007, at 1:00 PM, Brandon Aaron wrote: On 2/3/07, Joel Birch [EMAIL PROTECTED] wrote: Hi Brandon. After a long and gruelling battle with my old nemesis, the SVN repository, I seem to have managed to get the latest SVN and it does indeed seem to fix the flicker. I assume you were

Re: [jQuery] problem with mootools like top navigation

2007-02-03 Thread sharanbrar
Thanks Everybody for all your help. I was just playing around with the interface library when i encountered this problem but the replies show how passionate and helpful the jquery community is. I'm thinking of using the menu in a site and i will post it here. Thanks Again for all your help and

[jQuery] tablesorter: numbers with commas

2007-02-03 Thread justin kelly
Hi All, Just wondering has anyone got the tablesorter plugin working with numbers with commas (ie. 5,000.00, or 34,123,224.12 etc..) ? If so please post how It seems to sort all other number types OK but not these also does anyone know if theres a jquery live grid that has sorting and

[jQuery] Embedding Flash -- Troubles with jQuery.ready() SWFObject?

2007-02-03 Thread Brice Burgess
I am trying to embed flowplayer; http://flowplayer.sourceforge.net/ For some reason I cannot access an embedded SWFObject within a $().ready function. FF errors out with invalid access to a NPObject, or that the setConf method is not found? I am not sure what this means.. but I do know that if