[jQuery] Re: click vs click

2007-05-22 Thread Alex Objelean
This solution is good for Firefox, but does not work in IE.. :( Other tips? On May 17, 10:19 am, Klaus Hartl [EMAIL PROTECTED] wrote: Alex wrote: I wonder, how in Xbrowser way can I make a difference between a normal userclickand a programmatic triggeredclick? Is it possible? Thank you!

[jQuery] Re: newbie question: keypress vs keydown

2007-05-22 Thread james_027
Thanks a lot especially to your second post. :) cheers james On May 22, 11:59 am, Richard Worth [EMAIL PROTECTED] wrote: On 5/21/07, Richard Worth [EMAIL PROTECTED] wrote: On 5/21/07, james_027 [EMAIL PROTECTED] wrote: Hi, Is there a difference between to two? Any guidelines on

[jQuery] Re: click vs click

2007-05-22 Thread Klaus Hartl
Alex Objelean wrote: This solution is good for Firefox, but does not work in IE.. :( Other tips? This solution works perfectly fine for the Tabs plugin in all major browsers. So maybe something is wrong with your code... -- Klaus

[jQuery] RssFeed Reader with simpleie and jquery,innerfade and easing plugin

2007-05-22 Thread joomlafreak
http://www.joomlaprodigy.com/test/index.php?option=com_contenttask=sectionid=1Itemid=2 I made this rssfee reader with jquery and simplepie rss parser. Though still a little buggy in Opera. I would very much appreciate any suggestions to improve it.

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Christof Donat
Hi, We'd have to mark them as spam via the gmail web client though, right? I use Thunderbird to get my gmail. I almost never visit the actual gmail web client. :o' I don't use gmail. I wouldn't use the gmail webclient, because I am very happy with kmail. I don't like to use webmailers,

[jQuery] Re: RssFeed Reader with simpleie and jquery,innerfade and easing plugin

2007-05-22 Thread SeViR
Wow!, nice job :) I like it. joomlafreak escribió: http://www.joomlaprodigy.com/test/index.php?option=com_contenttask=sectionid=1Itemid=2 I made this rssfee reader with jquery and simplepie rss parser. Though still a little buggy in Opera. I would very much appreciate any suggestions to

[jQuery] Re: How to handle Pseudo leak in IE?

2007-05-22 Thread Jacky
Some progress... by using a garbage collection bin (a dummy div to appendChild and then empty the innerHTML), the DOM usage is stable now. Code: jQuery.fn.discard = function(){ var garbageBin = document.getElementById('IELeakGarbageBin'); if (!garbageBin) { garbageBin =

[jQuery] Re: Debugging jQuery

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

[jQuery] Re: Google Code SVN Issue

2007-05-22 Thread Sam Collett
Have you tried using https? I don't think you can check in using normal http. On May 21, 7:20 pm, Rey Bango [EMAIL PROTECTED] wrote: Hi guys, When I try checkout using TortoiseSVN (latest) viahttp://jqueryjs.googlecode.com/svn/trunk/, I get the following error: Error: REPORT request

[jQuery] form plugin

2007-05-22 Thread feragnoli
hello, is there a packed version of the form plugin?

[jQuery] Re: click vs click

2007-05-22 Thread Alex Objelean
Indeed, if I use bind.click() it does work... but when I use inline onclick binding - it isn't Here is the code (ok in FF, not ok in IE): code html head script //this way it does not work in IE function testClick(e) { if (e.clientX) { alert('Realclick'); }

[jQuery] Text Button

2007-05-22 Thread james_027
Hi, Is this the best way to make a text button? a href=#Click Me!/a It's nice that even with using a href=# jquery could make almost any tag to have click event, but the problem is the cursor doesn't indicate that it's clickable. Thanks in advance for any tips, suggestion, guides cheers,

[jQuery] Re: Text Button

2007-05-22 Thread Michael Stuhr
james_027 schrieb: Hi, Is this the best way to make a text button? a href=#Click Me!/a It's nice that even with using a href=# jquery could make almost any tag to have click event, but the problem is the cursor doesn't indicate that it's clickable. what do you mean by the cursor doesn't

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
When you say 'text button' I'm assuming that you don't want the usual button created with one of: input type='button' ... / button ... / Two ways to get an anchor tag to invoke a javascript action instead of navigating to a different page / anchor: a href=javascript:foo()Click Me!/a a

[jQuery] Re: Trouble with calendar icon and datePicker v2

2007-05-22 Thread Wizzud
the class of the anchor is actually .dp-choose-date, not .date-picker as the example page states. Check his css and you'll find an entry for a.dp-choose-date{}. Chris W. Parker wrote: Hello, Why doesn't $('#date').datePicker(); cause the calendar icon to appear anymore? Only thing I'm

[jQuery] Re: Text Button

2007-05-22 Thread Bob den Otter
james_027 wrote: Hi, Is this the best way to make a text button? a href=#Click Me!/a Slightly offtopic, but you might want to look into this: http://particletree.com/features/rediscovering-the-button-element/ Besides the button tag, they also go into styling a tags to resemble buttons.

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
Nice article - however it is incorrect when it says the button element 'behaves in exactly the same way as [the input tag]'. MSIE's implementation of button is...a pain in the backside at best! Information on that is at http://www.peterbe.com/plog/button-tag-in-IE --rob On 5/22/07, Bob den

[jQuery] Re: Text Button

2007-05-22 Thread Alexandre Plennevaux
1/ you can make any tag clickable by adding a click event. That's thanks to javascript, but jquery makes it more easily accessible. $('p').click(function(){ // do this and do that ... }); As for the cursor hand look , you can do that in css p{ Cursor: pointer; } -Original

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

2007-05-22 Thread Ralf S. Engelschall
On Tue, May 22, 2007, Jörn Zaefferer wrote: Dan G. Switzer, II wrote: This is a little off-topic, but when doing a regex search and replace within a text editor, how can I replace one character within a specific pattern? I want to get rid of newlines within td tags. This finds them:

[jQuery] Re: Google Code SVN Issue

2007-05-22 Thread Rey Bango
Hi Sam. Thanks for the suggestion but I'm only pulling down and not committing anything. So HTTP is supposed to work for that. With HTTPS, I'm prompted for a login which I don't need at the moment. Rey... Sam Collett wrote: Have you tried using https? I don't think you can check in using

[jQuery] Re: tip: jQueryify Bookmarklet

2007-05-22 Thread agent2026
Yeah, but you don't have any pictures of Colleen ;) Adam

[jQuery] Re: Google Code SVN Issue

2007-05-22 Thread Sam Collett
HTTPS is the only way that I can checkout code, so I have not seen that error myself. I set TortoiseSVN to remember my password so it never prompts me anyway. On May 22, 11:45 am, Rey Bango [EMAIL PROTECTED] wrote: Hi Sam. Thanks for the suggestion but I'm only pulling down and not committing

[jQuery] Re: tip: jQueryify Bookmarklet

2007-05-22 Thread Erik Beeson
hah. Awesome. You made her day. :) --Erik On 5/22/07, agent2026 [EMAIL PROTECTED] wrote: Yeah, but you don't have any pictures of Colleen ;) Adam

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-22 Thread SamCKayak
Thanks everyone. I'll reply to several questions all at once here. - It's ASP, not .NET. ( I know, I know.) I tried the JavaScript decodeURI and found it doesn't decode the ASP Server.URLEncode() well. I know that jQuery wants to stay small, but it seems like adding php, asp, .net decoders

[jQuery] http error: #406 using jqUploader

2007-05-22 Thread Matt2012
Hi im getting a http error: #406 when using jqUploader anyone else had this and no what might be causing it? Matt.

[jQuery] Re: Radio button .click() difficulty

2007-05-22 Thread SamCKayak
I'm past this problem which is why the test page is down. I found the fix by trial and error... which was: the return codes in an event handler were resetting the selected radio button to the initial state before the click event. I think I'm doing a return false to preserve the jQuery-selected

[jQuery] Set Div Width

2007-05-22 Thread SamCKayak
I'm setting the width of a DIV using: ...).children('div').attr( {width: ('80px'} ); It seems to have no effect (I have margin:0 auto; set in CSS). The rendered (view/generated source) shows: div width=80 which isn't what I had expected. I know that: div style=width:80px will work fine.

[jQuery] A problem with interfaces draggables

2007-05-22 Thread chrs
Hello, I am new to the jquery library (used prototype before) and this group, so if I am not posting this question at the rigth list, please tell me where to post it. I am building a page where the user has to drag items from a list to the right boxes. Right now I have a div with two boxes

[jQuery] Re: tip: jQueryify Bookmarklet

2007-05-22 Thread pixeline
Erik, can we drag her on our toolbar ? On May 22, 12:18 pm, agent2026 [EMAIL PROTECTED] wrote: Yeah, but you don't have any pictures of Colleen ;) Adam

[jQuery] Re: Set Div Width

2007-05-22 Thread zio budda
2007/5/22, SamCKayak [EMAIL PROTECTED]: I'm setting the width of a DIV using: ...).children('div').attr( {width: ('80px'} ); You have write width: ('80px'} Is this a type mistmatch ? M.

[jQuery] Re: Set Div Width

2007-05-22 Thread Brandon Aaron
You should use the css method, not the attr method. ...).children('div').css('width', 80); You can also pass and object of name value pairs. ...)children('div').css({ width: 80 }); No need to add the 'px' as jQuery will do it for you. -- Brandon Aaron On 5/22/07, SamCKayak [EMAIL

[jQuery] Re: A problem with interfaces draggables

2007-05-22 Thread Erik Beeson
An actual example online would help. Your ascii graphics are a nice try, but don't really communicate your issue very well. --Erik On 5/22/07, chrs [EMAIL PROTECTED] wrote: Hello, I am new to the jquery library (used prototype before) and this group, so if I am not posting this question at

[jQuery] Re: Color Label on Form Validation Error

2007-05-22 Thread Scott Moore
Thanks for the information guys, though I'm not sure I'll be able to use that specific solution given other requirements for the project. Jörn, is this something you'll look to add to a future release?

[jQuery] Re: A problem with interfaces draggables

2007-05-22 Thread Richard Worth
On 5/22/07, chrs [EMAIL PROTECTED] wrote: Has anyone any idea how to solve this? I could set a demo somewhere online to show what I mean if someone wants that. That would help, as your figure didn't stay intact (lines wrapped at around 70 chars). - Richard D. Worth

[jQuery] Re: jquery.validation and ajax

2007-05-22 Thread Richard Worth
On 5/22/07, daweb [EMAIL PROTECTED] wrote: ... $('#successDiv').fadeIn('slow'); } }), $(#form_inserisci_commento).validate({ ... I don't know if this is the problem, but the first thing that jumps out to me is the comma ( , ) above should be a semi-colon ( ; ). -

[jQuery] Re: Validation function help request

2007-05-22 Thread Luc Pestille
Hi Jörn, I'd like to use your plugin, and I was up to a point, but the problem I'm having is three-fold. I'm sure it can be solved with your plugin, and I'd love to know how; 1. This validation is for an admin system where the forms are automatically built, and there's no way to specify which

[jQuery] Re: http error: #406 using jqUploader

2007-05-22 Thread Rob Desbois
Well, no but typing 'http error 406' into Google should answer your question... From the HTTP RFC [2616]: 10.4.7 406 Not Acceptable The resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept

[jQuery] Re: Set Div Width

2007-05-22 Thread Gordon
$(myDiv).width (80); On May 22, 1:21 pm, SamCKayak [EMAIL PROTECTED] wrote: I'm setting the width of a DIV using: ...).children('div').attr( {width: ('80px'} ); It seems to have no effect (I have margin:0 auto; set in CSS). The rendered (view/generated source) shows: div width=80

[jQuery] Re: Set Div Width

2007-05-22 Thread tobaco
aehm, try this: ...).children('div').css( {width: '80px'} ); On 22 Mai, 14:21, SamCKayak [EMAIL PROTECTED] wrote: I'm setting the width of a DIV using: ...).children('div').attr( {width: ('80px'} ); It seems to have no effect (I have margin:0 auto; set in CSS). The rendered

[jQuery] Javascript errors on site using jQuery

2007-05-22 Thread Andy Matthews
My company uses this page to do some research work. http://vehix.dealerskins.com/ We just uploaded some new files that include the jQuery library. Now, all of a sudden we're getting JS errors. It says syntax error on line 2 and references our doctype line: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML

[jQuery] jQuery Powered Site - summize.com

2007-05-22 Thread Chris Scott
http://www.summize.com/ Ran across this and didn't see it in the wiki so I've added it. Very nice use of jQuery for the Ratings and Buzz graphs (e.g. http://www.summize.com/product/nintendo-wii/-/-/B0009VXBAQ ) and probably other features I haven't found yet. -- Chris Scott Adaptive

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

2007-05-22 Thread Dan G. Switzer, II
If I got that right, you could even mark the second group to be skipped by adding a colon: sHtml.replace(/(td[^]+)(:\r\n)(.+/td)/gi, $1$2) The syntax requires a question mark: (?:...) I find that skip syntax confuses me, but that's a personal preference. I only use it when I absolutely

[jQuery] Re: A problem with interfaces draggables

2007-05-22 Thread chrs
I see.I did not notice that before. Well, I have done some extensive debugging and solved the problem. For the people having the same problem (if they figured out what the problem was), my solution was: Set the options 'ghosting' to 'true'. Then in the onStart function of the draggable put the

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Bil Corry
Christof Donat wrote on 5/22/2007 12:28 AM: I don't know, what spamfilters gmail gives you, but I'd like to have spam filtered from the mailinglist before it reaches me. One solution some lists offer (not sure about googlegroups) is the very first message from someone has to be approved,

[jQuery] Re: Javascript errors on site using jQuery

2007-05-22 Thread Dan G. Switzer, II
Andy, You've got multiple !DOCTYPE / tags in your output. You can only have 1 !DOCTYPE / tag an it must be the first element. I see this problem again and again. Apps are build that generated invalid HTML structures (multiple opening html, body, etc tags) and when they go to specify the

[jQuery] Re: Javascript errors on site using jQuery

2007-05-22 Thread Andy Matthews
Great. Thanks Dan. I'll check that out. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, May 22, 2007 8:59 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Javascript errors on site using jQuery Andy, You've got

[jQuery] Re: Set Div Width

2007-05-22 Thread SamCKayak
Setting the width using .css( {width: 88} ) worked great. Thanks...

[jQuery] Dynamic content rendering anomaly

2007-05-22 Thread SamCKayak
First: this page validates. I've gone as far as running the rendered code through the WDG validator. No errors. No CSS errors either. Renders fine in IE 6, 7. Firefox, does a trick with the top of the table.show(), extending the border-top of the table beyond the right end of the box

[jQuery] Re: Text Button

2007-05-22 Thread james_027
Hi, What I mean is when the cursor go over the tag, it doesn't show that it is clickable ... hope you got what I mean. james On May 22, 5:15 pm, Michael Stuhr [EMAIL PROTECTED] wrote: james_027 schrieb: Hi, Is this the best way to make a text button? a href=#Click Me!/a It's nice

[jQuery] Re: Hide DIV on page click help

2007-05-22 Thread Jeff
bump On May 17, 4:20 pm, Jeff [EMAIL PROTECTED] wrote: That works great, but how do I get it to ignore clicks to the div itself? Thanks On May 15, 9:43 pm, RobG [EMAIL PROTECTED] wrote: On May 16, 1:36 am, Jeff [EMAIL PROTECTED] wrote: I am trying to add some functionality to my page

[jQuery] Re: Google Code SVN Issue

2007-05-22 Thread Sean Catchpole
I am able to pull a copy using: svn checkout *http*://jqueryjs.googlecode.com/svn/trunk/ jqueryjs I'm not sure why you are getting that error though. Perhaps it is a DNS issue? You could try switching you DNS to openDNS.com ~Sean

[jQuery] Re: Text Button

2007-05-22 Thread james_027
Hi, Thanks Rob. Just want to ask you which of the two suggestion is more optimize or efficient? Thanks On May 22, 5:16 pm, Rob Desbois [EMAIL PROTECTED] wrote: When you say 'text button' I'm assuming that you don't want the usual button created with one of: input type='button' ... /

[jQuery] Re: Text Button

2007-05-22 Thread james_027
Hi, what is the difference between input type=button to button Thanks james On May 22, 5:20 pm, Bob den Otter [EMAIL PROTECTED] wrote: james_027 wrote: Hi, Is this the best way to make a text button? a href=#Click Me!/a Slightly offtopic, but you might want to look into

[jQuery] Re: Text Button

2007-05-22 Thread james_027
Hi, Thanks a lot, exactly what I am looking for. Cheers james On May 22, 6:50 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: 1/ you can make any tag clickable by adding a click event. That's thanks to javascript, but jquery makes it more easily accessible. $('p').click(function(){ //

[jQuery] alerting the value of radio button onfocus

2007-05-22 Thread stef
that's what im trying to do - when a radio button is clicked, show its value. i have the code below, which i dont think is the best way to go about it. it always alerts undefined. my reasoning is: when the document has loaded, and an input element in the div with id 'test' is focussed, show an

[jQuery] Re: Dynamic content rendering anomaly

2007-05-22 Thread Robert O'Rourke
SamCKayak wrote: First: this page validates. I've gone as far as running the rendered code through the WDG validator. No errors. No CSS errors either. Renders fine in IE 6, 7. Firefox, does a trick with the top of the table.show(), extending the border-top of the table beyond the right

[jQuery] Re: Text Button

2007-05-22 Thread Rob Desbois
James, The button tag is a different element created to allow much more control over styling and content - you can include markup such as images and styling in a button tag which is not possible with input type=button As for which of the two approaches I prefer - I'd go for a

[jQuery] Re: Dynamic content rendering anomaly

2007-05-22 Thread Erik Beeson
The problem is with .show(). The show function doesn't work on tables because it sets the CSS property display to block, and for tables you want display to be table. Instead of doing .show(), do .css(display, table). Or if you want to have the animated show effect, you could do:

[jQuery] Working only after refreshing

2007-05-22 Thread poncjusz
I've got simple code (at the bottom) which move up articleContent its margin-top depends on #otherArticles height, its work but only when I refresh my site. Is any trick which allows me to make it work correctly? $(document).ready(function() { $(#articleContent).css({ margin-top:

[jQuery] Slow selector

2007-05-22 Thread Gordon
I am writing a script that scans a list of items that each contain form fields and doing something based on the value of the field in each item. I came up with the following code, which does seem to work as intended, but execution can take upwards of 500ms, which I feel is rather slow. var

[jQuery] jquery tabs: creating tabs without triggering onShow action

2007-05-22 Thread [EMAIL PROTECTED]
Hi, I noticed when I create my JQuery tabs, the onShow callback function is automatically invoked. $('#container').tabs(tab_id, { remote: true, fxFade: true, fxSpeed: 'fast', onShow:

[jQuery] Re: Slow selector

2007-05-22 Thread Benjamin Sterling
Gordo, Could be wrong on this, but you should be able to do something like: $('[EMAIL PROTECTED]').each(function(){ thisVal = parseInt($(this).val()); }); I am pretty sure that will be faster, but not a 100% on that. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-22 Thread Jeffrey Kretz
Ah, I understand. I believe that the actual issue is that the Server.URLEncode method is flawed, not the client-side javascript decoders. unescape, decodeURI and decodeURIComponent are all javascript standard methods and don't need to be implemented by any javascript libraries. If you are

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread John Resig
That's an option with Google Groups too - but it'll require a lot of work on our (jQuery team) end. It does seem like the more-ideal solution, if we really want no spam. --John On 5/22/07, Bil Corry [EMAIL PROTECTED] wrote: Christof Donat wrote on 5/22/2007 12:28 AM: I don't know, what

[jQuery] Re: Stop animation on the fly. (Stop effect, stop fade, stop slide, etc.)

2007-05-22 Thread Jeffrey Kretz
You can use the interface plugin. http://interface.eyecon.ro/ The ifx.js file, added to your project, opens a number of additional methods, including a stop(). JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pogo Sent: Tuesday, May 22,

[jQuery] Re: jQuery Powered Site - summize.com

2007-05-22 Thread Marshall Salinger
Chris Scott wrote: http://www.summize.com/ Ran across this and didn't see it in the wiki so I've added it. Very nice use of jQuery for the Ratings and Buzz graphs (e.g. http://www.summize.com/product/nintendo-wii/-/-/B0009VXBAQ ) and probably other features I haven't found yet.

[jQuery] Re: Slow selector

2007-05-22 Thread Rob Desbois
How about using a class? I haven't tested it but I believe this is faster than using field names to filter on. --rob On 5/22/07, Gordon [EMAIL PROTECTED] wrote: I am writing a script that scans a list of items that each contain form fields and doing something based on the value of the field

[jQuery] Stop animation on the fly...stop effect, stop fade, stop slide...

2007-05-22 Thread Pogo
I'm discovering a really huge drawback with jQuery. There doesn't seem to be any simple solution to just stopping any animation effect once it has been started. I've seen all kinds of posts making requests for such a thing (i.e., $ (p).animationStop(); ), but nowhere have I seen any

[jQuery] Re: jquery tabs: creating tabs without triggering onShow action

2007-05-22 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi, I noticed when I create my JQuery tabs, the onShow callback function is automatically invoked. $('#container').tabs(tab_id, { remote: true, fxFade: true, fxSpeed: 'fast',

[jQuery] Re: form plugin

2007-05-22 Thread Ⓙⓐⓚⓔ
the code looks very packable, are you willing to test? http://jqueryjs.googlecode.com/svn/trunk/plugins/form/jquery.form.js turns into: eval(function(p,a,c,k,e,r){e=function(c){return(ca?'':e(parseInt(c/a)))+((c=c%a)35?String.fromCharCode(c+29):

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Benjamin Sterling
John, if that is something you can trust someone that is not part of the jQuery team to handle, I would be willing to help. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Trouble with calendar icon and datePicker v2

2007-05-22 Thread Chris W. Parker
On Tuesday, May 22, 2007 2:20 AM Wizzud said: the class of the anchor is actually .dp-choose-date, not .date-picker as the example page states. Check his css and you'll find an entry for a.dp-choose-date{}. Great! Thanks.

[jQuery] Re: jquery.validation and ajax

2007-05-22 Thread daweb
I've tried this solution, but nothing to do for me... umphf!! $().ready(function() { // validate signup form on keyup and submit $('#form_inserisci_commento').ajaxForm({ beforeSubmit: function() {$(#form_inserisci_commento).validate({ event: keyup, rules: {

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread John Resig
Actually, that's a good idea. You're now a manager of the group - and messages from new members are now moderated. Go to town! --John On 5/22/07, Benjamin Sterling [EMAIL PROTECTED] wrote: John, if that is something you can trust someone that is not part of the jQuery team to handle, I would

[jQuery] Select box change event infinite loop in ASP.NET

2007-05-22 Thread Mike Chabot
I have a simple function to capture the OnChange event of a drop-down select box. In MSIE, it works as expected, but Firefox gets caught in an infinite loop. Has anyone else seen this problem? I have a counter to track the problem. In MSIE, the counter goes up by 1 for every change. In Firefox,

[jQuery] Re: How to handle Pseudo leak in IE?

2007-05-22 Thread Brandon Aaron
One way around this in your app and apps like yours is to invoke the IE garbage collector by calling the GarbageCollect function. You would want to do this every so often are important clicks/exchanging. Calling this method should release any memory that IE would normally release on refresh.

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Benjamin Sterling
Sweet, is this where I start my maniacal laughter. no, power does not go to my head quickly :) On 5/22/07, John Resig [EMAIL PROTECTED] wrote: Actually, that's a good idea. You're now a manager of the group - and messages from new members are now moderated. Go to town! --John On 5/22/07,

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread John Resig
Haha - if the # of subscribers starts to drop drastically, I'll know why :) --John On 5/22/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Sweet, is this where I start my maniacal laughter. no, power does not go to my head quickly :) On 5/22/07, John Resig [EMAIL PROTECTED] wrote:

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Ⓙⓐⓚⓔ
Bengi, the list meister! The Benamator! The Man with the Button! All Hail Benjamin, He who leadeth us from spam! On 5/22/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Sweet, is this where I start my maniacal laughter. no, power does not go to my head quickly :) On 5/22/07, John Resig

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

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

[jQuery] Jquery compat-1.0.js patch kills thickbox 3.0

2007-05-22 Thread Michael Haggerty
I installed jquery 1.1.2, thickbox 3.0 and the compat-1.0.js patch for Drupal all on the same site and Thickbox died quickly. I played around with the code for a while and found that a call to show() in TB was the culprit. Wondering how to attack these kinds of problems in the future. On the one

[jQuery] ANNOUNCE: SearchHighlight plugin

2007-05-22 Thread Renato Formato
Hi all, I just released my second jQuery plugin, SearchHighlight, a plugin to highlight searched words in your search result pages. Here are the main features: 1) It works using search engine referrers or explicitly declared words 2) supports multicolor highlight 3) exact and partial matches 4)

[jQuery] Re: Working only after refreshing

2007-05-22 Thread Richard D. Worth
On 5/22/07, poncjusz [EMAIL PROTECTED] wrote: $(document).ready(function() { $(#articleContent).css({ margin-top: -($(#otherArticles).height()+15 }); )}; $(document).ready(function() { $(#articleContent).css({ margin-top: -( $(#otherArticles) .height()

[jQuery] Dispatch events into dynamically loaded content

2007-05-22 Thread [EMAIL PROTECTED]
Hello everybody and my apologies for my poor english but I'm a french speaker. I want to dispatch a load event on a link in a loaded content. Explanation : div a href=someStuffToLoad.php class=doMyLoadFirst and original link/a /div $('.doMyLoad').click( function () {

[jQuery] Re: The best practice to do this

2007-05-22 Thread Jean Nascimento
n that dont break the line =p On 5/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: $(#mytext).keyup would be called for every character entered... if they hit a return (or enter or tab) you could insert an middot; Is that what you want?? On 5/22/07, Jean Nascimento [EMAIL PROTECTED] wrote:

[jQuery] Re: The best practice to do this

2007-05-22 Thread Christof Donat
Hi, textarea id=mytext -1 -2 -3 /textarea I guess, it is just my lack of imagination why someone could whant to need such a UI. At first I suggest, that you step back and have some thoughts if there really is not a better uI for what you need. Anyway, To get what I think you need you

[jQuery] Re: The best practice to do this

2007-05-22 Thread Jake McGraw
Have you tried using a newline, like \n? On 5/22/07, Jean Nascimento [EMAIL PROTECTED] wrote: n that dont break the line =p On 5/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: $(#mytext).keyup would be called for every character entered... if they hit a return (or enter or tab) you could insert

[jQuery] Re: The best practice to do this

2007-05-22 Thread Ⓙⓐⓚⓔ
you would have to allow the return to be inserted as well! I'm having trouble understanding what you mean. You don't want any real lis, just a textarea, but you want a - added with every newline? On 5/22/07, Jean Nascimento [EMAIL PROTECTED] wrote: n that dont break the line =p On

[jQuery] Re: Slow selector

2007-05-22 Thread Gordon
The children of the container are the elements that decisions are going to be made on based on the values of form fields inside them, so doing the each on the fields directly isn't an option. I'm going to use the classes idea, which seems more practical for what I want. Thanks. On May 22, 4:29

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Benjamin Sterling
hmmm... I wonder if there would be a statue raised in my name. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Ⓙⓐⓚⓔ
Perhaps on your anniversary as spam monarch! they will mint a coin with your picture on it in Silver! On 5/22/07, Benjamin Sterling [EMAIL PROTECTED] wrote: hmmm... I wonder if there would be a statue raised in my name. -- Benjamin Sterling http://www.KenzoMedia.com

[jQuery] Re: Dispatch events into dynamically loaded content

2007-05-22 Thread Chris W. Parker
On Tuesday, May 22, 2007 11:23 AM [EMAIL PROTECTED] said: Hello everybody and my apologies for my poor english but I'm a french speaker. I had no problem with your English. :) I want to dispatch a load event on a link in a loaded content. [snip] I'd like that the My second link can

[jQuery] Re: Slow selector

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

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Benjamin Sterling
hmmm I can deal with silver, I prefer white gold though, can we make that happen? Not sure about spam cake tho, but I would like some spam fajitas http://www.recipesource.com/main-dishes/meat/pork/spam/00/rec0025.html -- Benjamin Sterling http://www.KenzoMedia.com

[jQuery] OT: XML vs JSON

2007-05-22 Thread Sean Catchpole
I really like json, and the ability to recognize arrays is great. However, there is strength of xml in that order can be preserved. I can not think of a way to implement this in json. Is it possible and I am simply blind to the truth? XML: pbTitle/biSubtitle/ibAuthor/b/p JSON:

[jQuery] Re: OT: XML vs JSON

2007-05-22 Thread Jake McGraw
What exactly does your XML schema represent? Is it just a form of stylized markup, say b Bold, i Italicized? I'm pretty sure the for(x in y) loop will maintain order of variables within a JSON string, reading off variables left to right. - jake On 5/22/07, Sean Catchpole [EMAIL PROTECTED]

[jQuery] Re: OT: Suppress Apache Authentication

2007-05-22 Thread Sean Catchpole
To follow up on the result of this. I can not use ajax for requesting information from another site (bummer). However I only originally wanted an image that wouldn't popup a security login window. Using this works beautifully: var img = new Image(); //Don't use document.createElement(img);

[jQuery] Re: Color Label on Form Validation Error

2007-05-22 Thread Jörn Zaefferer
Scott Moore wrote: Thanks for the information guys, though I'm not sure I'll be able to use that specific solution given other requirements for the project. Jörn, is this something you'll look to add to a future release? If have it on my todo list, but am still looking for a good approach.

[jQuery] Re: OT: XML vs JSON

2007-05-22 Thread Sean Catchpole
Jake, A great idea, however the problem is how can JSON represent the order correctly? Currently, it would output both b tags before the i, whereas the desired effect is to output the first b, then the i, then the second b tag, in that order. ~Sean P.S. The xml is just an example scenario.

[jQuery] Re: Validation function help request

2007-05-22 Thread Jörn Zaefferer
Luc, Hi Jörn, I'd like to use your plugin, and I was up to a point, but the problem I'm having is three-fold. I'm sure it can be solved with your plugin, and I'd love to know how; Ideally I'd like an example to get me started - assuming a select dropdown (#jobtype) with two options ('a',

  1   2   >