Re: [jQuery] tablesorter: numbers with commas

2007-02-04 Thread Chris Domigan
I think the tablesorter plugin is fairly easy to extend with custom regexes, if you're up for it! Or you could just use the existing regex and get it to strip all commas before the comparison. Chris ___ jQuery mailing list discuss@jquery.com

[jQuery] Strange problem with the word function

2007-02-04 Thread mmch
I am having a strange problem when these three things come together: Windows Internet Explorer Jquery Xstandard(wysiwyg editor) The problem concerns the word 'function'. Whenever the xstandard component has the word function in it, in plain text, the javascript fails and my app saves nothing.

Re: [jQuery] IE PNG hack

2007-02-04 Thread Klaus Hartl
Kush Murod schrieb: 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 Instead of creating a $(this) object 9 (!) times think about creating it once and store

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-04 Thread Sebastian Busch
Hi, 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'm just not sure where you see the problem, or rather, why you don't see the

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

2007-02-04 Thread Jörn Zaefferer
Joel Birch schrieb: I am on a Mac and currently use Eclipse as recommended to me last year by Jörn. I will have a look at svnX but I think the main problem is that I do not understand the SVN in general and all the options (at least in Eclipse) is overwhelming. It all seems so

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-04 Thread Jörn Zaefferer
Sebastian Busch schrieb: I think alexandre's issue (and mine) is that the height of the accordion menu widget does not remain constant while opening entries. Maybe the closing and opening animation should be in sync? Compare with this example:

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

2007-02-04 Thread Joel Birch
On 04/02/2007, at 10:18 PM, Jörn Zaefferer wrote: Joel Birch schrieb: I am on a Mac and currently use Eclipse as recommended to me last year by Jörn. I will have a look at svnX but I think the main problem is that I do not understand the SVN in general and all the options (at least in

Re: [jQuery] IE PNG hack

2007-02-04 Thread Christof Donat
Hi, I've wrote very simple JQuery IE PNG hack plugin. Would like to know your professional opinion, to make it better Great idea. Generally you can set the filter for the img tag as well, you just need a fully transparent gif (or png) for the src. jQuery.fn.IEPNGHack = function() {

[jQuery] Extending jEditable to use Interface's Autocomplete

2007-02-04 Thread Ken Saggy
Hi everyone, Although I know the there is already a pluging the extends jEditable to use a Autocomplete plugin, i want to use the Interface Autocompleter plugin instead. I tried extending it the same way the other plugin does it and it does seem to work (I see the XHR executed in Firebug) but

Re: [jQuery] Errors: 1.1 and IE5.5

2007-02-04 Thread nezza
Phil, Me too. Everything OK in IE6/7, Fireforx 1.5/2.0 and Netscape 7.2/8.1.2. Any ideas? Nel Phillip B Oldham-4 wrote: Anyone else getting an error when using jQuery 1.1 with IE5.5? My code works fine with 1.1 on IE6/7, FF1+, Opera 9.10, and Safari, but in IE5.5 i'm getting a

Re: [jQuery] simple selector with ID doesn't work anymore

2007-02-04 Thread Roger
I am having the same issue with the latest jquery. Has it been fixed or is there a workaround ? Thanks Roger -- View this message in context: http://www.nabble.com/simple-selector-with-ID-doesn%27t-work-anymore-tf3080046.html#a8792927 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-04 Thread Jason Levine
By the way, I just wanted to thank you for this plugin. I'm putting it into use on our company's Intranet. We had a couple of applications that used a tabbed interface. The problem was that there were many tabs and items were getting lost in the applications. I put in jdMenu (on a testing

Re: [jQuery] IE PNG hack

2007-02-04 Thread Christof Donat
Hi, Sorry, I forgot something: Without background: jQuery.fn.IEPNGHack = function() { if (!$.browser.msie) return this; return this.each(function() { [...] }); }; With background: jQuery.fn.IEPNGHack = function() { if (!$.browser.msie) return

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-04 Thread Jörn Zaefferer
Karl Swedberg schrieb: I wonder if that can be achieved simply by defining a height for the containing div in CSS? Actually setting a height for each content element works quite well, together with same speed for hide and show. I'll update the demo accordingly. Thanks for the idea! -- Jörn

Re: [jQuery] Release: Accordion menu plugin 1.1

2007-02-04 Thread Mark Lincoln
Jörn, I tried your demo and was wondering if it would be possible to add a feature. You can say no if you want as it's not really necessary, but I think it might make a cool option. Could you make it so that if you click on a top level item a second time, it closes the item? So if I click on

Re: [jQuery] What is wrong with this jQuery code?

2007-02-04 Thread Nate Cavanaugh
It works just fine on my end. Can you post an example online? Tracerbullet wrote: What is exactly is wrong with this jQuery code? I've tried for hours, but something seems to be wrong with it. Is my logic incorrect? $(document).ready(function(){ $(a).toggle(function(){

[jQuery] interface : download page doesn't work?

2007-02-04 Thread Alexandre Plennevaux
is it just me or the download page of interface plugin is broken ? http://interface.eyecon.ro/download Alex. Using: FF2 on winXPSP2 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] interface : download page doesn't work?

2007-02-04 Thread Ken Saggy
Same here. Links don't seem to be working On 2/4/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: is it just me or the download page of interface plugin is broken ? http://interface.eyecon.ro/download Alex. Using: FF2 on winXPSP2 ___

[jQuery] speed optimization

2007-02-04 Thread Alexandre Plennevaux
Hi, does jquery uses this ? HYPERLINK http://dean.edwards.name/weblog/2006/03/fasterhttp://dean.edwards.name/weblog/2006/03/faster is it running behind the $(document).ready(function() { ... }); call ? Cheers, Alex. -- Ce message Envoi est certifié sans virus connu. Analyse

Re: [jQuery] A fadeout effect makes the page jump up in IE7

2007-02-04 Thread Klaus Hartl
sholby schrieb: Hello, I've added an effect to make the pages fade when i click on some other internal link, like this: $(a).not(.external).click(function() { var url=this.href; // fade effect

[jQuery] loading images

2007-02-04 Thread Alexander Petri
i have a question how to load images with a small indicator i use the following javascript: $(document).ready(function(){ $('td #artwork-link').click(function(e){ e.preventDefault();

Re: [jQuery] IE PNG hack

2007-02-04 Thread Kush Murod
Wow Christof, that heaps for such a detailed reply and explanation. It will take me some time fully understand whole thing. for now though, to get my project moving I've used part of your code to come up with this, tested http://www.nemoweb.com.au/jquery/IEPNGHack/take3.html Feedback is

Re: [jQuery] IE PNG hack

2007-02-04 Thread Kush Murod
thanks for million dollar feedback Klaus :) I've used Christof's code to come up with cleaner solution http://www.nemoweb.com.au/jquery/IEPNGHack/take3.html Klaus Hartl wrote: Kush Murod schrieb: Hi guys, I've wrote very simple JQuery IE PNG hack plugin. Would like to know your

Re: [jQuery] IE PNG hack

2007-02-04 Thread Kush Murod
Thanks for the reply Rey I'd rather keep code simpler, by some help from Christof, here is current solution http://www.nemoweb.com.au/jquery/IEPNGHack/take3.html Rey Bango wrote: Hi Kush, This is very cool if you're working with a large number of pngs. I can definitely see the advantage

[jQuery] selector question

2007-02-04 Thread Alexandre Plennevaux
hello, say i have a definition list: dttitle /dt dd this content blabla/dd dtanother title /dt dd another content blabla/dd i would like to have an event triggered on each dt that modifies its following dd, and only that one. i tried a few , but cannot get it to work correctly; it's

Re: [jQuery] selector question

2007-02-04 Thread Joel Birch
On 05/02/2007, at 12:37 PM, Alexandre Plennevaux wrote: hello, say i have a definition list: dttitle /dt dd this content blabla/dd dtanother title /dt dd another content blabla/dd i would like to have an event triggered on each dt that modifies its following dd, and only that one.

Re: [jQuery] selector question

2007-02-04 Thread Ⓙⓐⓚⓔ
the great thing about dt and dd, is that they come in pairs! $(dt).click( function() { $(this).next('dd').slideToggle(); }); aught to do it... On 2/4/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello, say i have a definition list: dttitle /dt dd this content blabla/dd

[jQuery] jQuery and Object Notation... confused with this

2007-02-04 Thread riddlu
Hello Recently I've been trying to use ON with jQuery. I met with obstacle. I couldn't use this keyword in certain cases to get my main object reference... // var myObject = { layout: { 'align': '' }, start: function() {

Re: [jQuery] jQuery and Object Notation... confused with this

2007-02-04 Thread Joel Birch
On 05/02/2007, at 2:04 PM, [EMAIL PROTECTED] wrote: Hello Recently I've been trying to use ON with jQuery. I met with obstacle. I couldn't use this keyword in certain cases to get my main object reference... // var myObject = { layout: { 'align': '' },

Re: [jQuery] jQuery and Object Notation... confused with this

2007-02-04 Thread Nate Cavanaugh
Hey there, This was one of my big issues when I started jQuery, but there is now a solution as of 1.1. When you bind your method to an event, you can pass in your current object, and still reference it in your event function. Basically, you can pass in ANY data to your event function, and you

Re: [jQuery] selector question

2007-02-04 Thread Karl Swedberg
On Feb 4, 2007, at 8:47 PM, Ⓙⓐⓚⓔ wrote: the great thing about dt and dd, is that they come in pairs! Well, not always. There can be multiple dd elements for each dt. If you run into a situation in which you need to select possibly more than one dd until the next dt, you can use John Resig's

Re: [jQuery] Konqueror Issues

2007-02-04 Thread Andrew Mason
On Saturday February 3 2007 09:43:57 pm Jörn Zaefferer wrote: 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

Re: [jQuery] jQuery and Object Notation... confused with this

2007-02-04 Thread riddlu
Nate, this solution is so wonderful that I can't hide my admiration for jQuery and jQuery team members' work. The code you provided satisfies me in 100%, thank you for quick reply. :-) On Feb 5, 4:46 am, Nate Cavanaugh [EMAIL PROTECTED] wrote: Hey there, This was one of my big issues when I

Re: [jQuery] jQuery and Object Notation... confused with this

2007-02-04 Thread Michael Geary
Recently I've been trying to use ON with jQuery. I met with obstacle. I couldn't use this keyword in certain cases to get my main object reference... var myObject = { layout: { 'align': '' }, start: function() { $('form').bind('submit', this.buildLayout);

[jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Lquid
preI am working on my first jQuery Plugin, jAssistant. It is an floating pane like the one found in IPB but it looks way better and supports themes( 4 are working currently ). It supports a native tabs solution and direct, ajax, or element based content loading. The site to download/test it is:

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Ⓙⓐⓚⓔ
because you hard coded the site name... http://xtrafile.com/jAssistant doesn't work.. but http://www.xtrafile.com/jAssistant does. On 2/4/07, Lquid [EMAIL PROTECTED] wrote: preI am working on my first jQuery Plugin, jAssistant. It is an floating pane like the one found in IPB but it looks

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Karl Rudd
Quite nice. Though the scrollbars don't return after you dismiss the window. Karl Rudd On 2/5/07, Lquid [EMAIL PROTECTED] wrote: preI am working on my first jQuery Plugin, jAssistant. It is an floating pane like the one found in IPB but it looks way better and supports themes( 4 are working

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Lquid
Thanks for that Karl. I'm working that now as well as a solution so that the assistant can't be dragged outside the window area. Its free for download so have fun if you want. -Lquid Karl Rudd wrote: Quite nice. Though the scrollbars don't return after you dismiss the window. Karl Rudd

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Ⓙⓐⓚⓔ
that's a firefox restriction. it may not be as strict in other browsers. On 2/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: because you hard coded the site name... http://xtrafile.com/jAssistant doesn't work.. but http://www.xtrafile.com/jAssistant does. On 2/4/07, Lquid [EMAIL PROTECTED] wrote:

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Lquid
Thanks, i updated the nabble.com version with the correct link. -Lquid Ⓙⓐⓚⓔ wrote: because you hard coded the site name... http://xtrafile.com/jAssistant doesn't work.. but http://www.xtrafile.com/jAssistant does. On 2/4/07, Lquid [EMAIL PROTECTED] wrote: preI am working on my

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread limodou
On 2/5/07, Lquid [EMAIL PROTECTED] wrote: Thanks for that Karl. I'm working that now as well as a solution so that the assistant can't be dragged outside the window area. Its free for download so have fun if you want. -Lquid I can't see the resizable: yes available. And 1.html ajax seems

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Ⓙⓐⓚⓔ
you also have at least one trailing comma inside an object... safari doesn't like that {1: {name: Your Files, content: content-1},2: {name: Your Recent Downloads,content:content-2},3: {name: Your Comments,content:h1Comments/h1, type: html},4:{name: Your Settings,content:1.html, type: ajax},},

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread limodou
If jAssistant can have an option center, so the window could be displayed in center. -- I like python! UliPad The Python Editor: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou ___ jQuery mailing list

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Ⓙⓐⓚⓔ
and safari got a very strange version of jquery! beyond packed, with lots of 8 bit characters... I've not seen that before! On 2/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: you also have at least one trailing comma inside an object... safari doesn't like that {1: {name: Your Files, content:

Re: [jQuery] A fadeout effect makes the page jump up in IE7

2007-02-04 Thread Stéphane Nahmani
On 4 févr. 07, at 23:26, Klaus Hartl wrote: My guess at that: Animations have to trigger hasLayout in IE (to make fade work). Rendering can pretty much differ with layout on/off, for example do vertical margins no longer collapse sometimes and this may be the case here. Yes, that seemed

[jQuery] Inline editing-double entry in database

2007-02-04 Thread Vikrant Azad
No matter which plugin I try for inline editing,I always get double entries saved in my mysql database. I wonder why is so happening. Seems to me a basic mistake I am doing. Does anyone know what am I doing wrong before I post in detail. Thanks -- View this message in context:

Re: [jQuery] Inline editing-double entry in database

2007-02-04 Thread Ⓙⓐⓚⓔ
ok here's some advice on a double entry in the database with no detail. did you get 2 requests on the server? check the logs. is one from a form and one from ajax? are you playing with a bind on the submit that doesn't return false to stop the normal form submit? if that's not it post

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Mohsen Saboorian
FF 2.0, Win XP: Error: uncaught exception: Permission denied to call method XMLHttpRequest.open On 2/5/07, Lquid [EMAIL PROTECTED] wrote: Thanks for that Karl. I'm working that now as well as a solution so that the assistant can't be dragged outside the window area. Its free for download so

Re: [jQuery] Inline editing-double entry in database

2007-02-04 Thread Vikrant Azad
I am not a pro with programming so I would be able to grasp only little form what you say till you write in very explicit words. So the best option is to provide a url. Here is the url http://www.joomlaprodigy.com/test/modules/mod_editinplacejp.php Ⓙⓐⓚⓔ wrote: ok here's some advice on a

Re: [jQuery] Inline editing-double entry in database

2007-02-04 Thread Vikrant Azad
I did not see the it under the options but I think you are right because under history it shows this [http://test.joomlaprodigy.com/index.php?option=com_hsbridgejpItemid=31task=joomlanswer;, http://www.joomlaprodigy.com/test/modules/mod_editinplacejp.php;,

Re: [jQuery] selector question

2007-02-04 Thread Alexandre Plennevaux
thanks a lot Karl, that is helpful to know, although in this very case, it's one dd per dt. But indeed, it's perfectly valid to use several dd for one dt, as a word can have multiple definitions. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent:

Re: [jQuery] Extending jEditable to use Interface's Autocomplete

2007-02-04 Thread Ken Saggy
Well, the problem was so obvious i can't believe i didn't see it before... (its amazing what a good night sleep can do) If anyone wants to know (to avoid future problems), i just forgot to set the 'name' settings for jEditable which lead to that the the new input field didn't have the correct

Re: [jQuery] Pending Release: jAssistant, a pop-out, tabbed, dialog window for jQuery

2007-02-04 Thread Alexandre Plennevaux
I think it is a very promising release, it looks good at least; You could improve the way it feels with this 2 features: - draggable constrained to the viewport or a specific container; - translucency while on drag. So, is this how Vista looks? Beurk :) i prefer my skinned windowsXP :-) Thanks