[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Brandon Aaron
The fade in message is not hidden. Try: $('#warning').css('opacity', 0).fadeIn(2000); or $('#warning').fadeOut(2000).fadeIn(2000); -- Brandon Aaron On 7/3/07, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote: -Original Message- From: John Resig [mailto:[EMAIL PROTECTED

[jQuery] Re: ReBinding

2007-07-03 Thread Brandon Aaron
If you have updated to jQuery 1.1.3 you can use the new behavior plugin. It attaches events based on the selector even after the DOM has been updated. http://jquery.com/plugins/project/behavior/ -- Brandon Aaron On 7/3/07, DXCJames [EMAIL PROTECTED] wrote: I am building a app that has a lot

[jQuery] Re: OT: iPhone Interface in JavaScript

2007-07-03 Thread Brandon Aaron
And if you use the minified version and gzip it it is only 11kb! Go! Go! HTTP Compression! -- Brandon Aaron On 7/3/07, Rey Bango [EMAIL PROTECTED] wrote: Some of you may have seen this but in case you missed it, David Cann created a cool littel iPhone interface that can help you

[jQuery] Re: 1.1.3 breaks opacity effects in IE?

2007-07-02 Thread Brandon Aaron
from SVN if you can. -- Brandon Aaron On 7/2/07, Mike Alsup [EMAIL PROTECTED] wrote: Sorry about that, Sam. You're quite right. I was testing with the wrong release. The opacity is not working correctly in IE7. Is IE6 working? Virtual PC is giving me fits at the moment. Mike On 7/2/07

[jQuery] Re: 1.1.3 breaks opacity effects in IE?

2007-07-02 Thread Brandon Aaron
I saw the bug report for this ... do you have a test case? I can't reproduce this one. -- Brandon Aaron On 7/2/07, weepy [EMAIL PROTECTED] wrote: I also had a problem, this time only with IE6 line 1587 == return elem.filter ? (parseFloat( elem.filter.match(/ opacity=([^)]*)/)[1] ) / 100

[jQuery] Re: sprintf or printf for jquery?

2007-07-02 Thread Aaron Heimlich
for my purposes. I was looking at http://www.vladdy.net/Demos/printf.html but the code is beyond me. Cheers, Rob -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread Aaron Heimlich
On 7/2/07, John Resig [EMAIL PROTECTED] wrote: http://code.google.com/p/jquery Returns 404 Not Found -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread Brandon Aaron
That should be: http://code.google.com/p/jqueryjs/ On 7/2/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 7/2/07, John Resig [EMAIL PROTECTED] wrote: http://code.google.com/p/jquery Returns 404 Not Found -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: window.onresize event

2007-07-02 Thread Brandon Aaron
() { alert(I'm done resizing for the moment); }; var resizeTimer = null; $(window).bind('resize', function() { if (resizeTimer) clearTimeout(resizeTimer); resizeTimer = setTimeout(doSomething, 100); }); -- Brandon Aaron On 7/2/07, Marshall Salinger [EMAIL PROTECTED] wrote

[jQuery] Re: Interface Plugin - Pulsate and Bounce Newline Problems

2007-06-29 Thread Brandon Aaron
BTW ... this is fixed in the upcoming jQuery 1.1.3. :) -- Brandon Aaron On 6/29/07, Adam Greene [EMAIL PROTECTED] wrote: hi Nathan, I ran into the same issue as well. The jQuery.fx method is setting the effected element to display:block, and that is the root of your troubles. I'm

[jQuery] Re: validate() not working in IE(6 7)

2007-06-28 Thread Brandon Aaron
There is a known bug with Validate and jQuery 1.1.3a. -- Brandon Aaron On 6/28/07, Luc Pestille [EMAIL PROTECTED] wrote: Hi all, For some reason, the validate() plugin has somehow stopped working for me in IE. It did at a point in the past, but as it was working I didn't pay attention

[jQuery] Re: Dimensions - scrollTop

2007-06-27 Thread Brandon Aaron
. -- Brandon Aaron

[jQuery] Re: Dimensions - scrollTop

2007-06-27 Thread Brandon Aaron
That kind of effect should not be in the dimensions plugin but rather in a UI plugin. Demos would help out so much. -- Brandon Aaron On 6/27/07, Glen Lipka [EMAIL PROTECTED] wrote: Ahh, I see. Thank you. In terms of setting the ScrollTop, is it possible for that to take a Duration

[jQuery] Re: Unexpected call to method or property access

2007-06-26 Thread Brandon Aaron
I think this might be the same bug that is currently causing issues for the validation plugin with 1.1.3a. I hope to find time to fix it tonight. -- Brandon Aaron On 6/26/07, Gordon [EMAIL PROTECTED] wrote: Update: Replacing the 1.1.3a jQuery library with 1.1.2 seems to fix the problem

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
you're doing this for a public web site). Flash seems to be the best way to what you're looking for. [1] http://developer.mozilla.org/en/docs/HTML:Canvas [2] http://developer.mozilla.org/en/docs/SVG -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
are you looking for? --Erik -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Brandon Aaron
Check out the excanvas project: http://excanvas.sourceforge.net/ -- Brandon Aaron On 6/26/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Since when does IE have native canvas support? On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: JavaScript is with canvas[1] or SVG[2], both of which

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
users to download and install excanvas, then more power to you. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Erik Beeson [EMAIL PROTECTED] wrote: You misunderstand. It's a javascript file that you include on your page just like jQuery. It's no more installed than jQuery. Just fine for general public use. Well then, I stand corrected. -- Aaron Heimlich Web Developer [EMAIL PROTECTED

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Brandon Aaron
You need to use the outerWidth and outerHeight methods of the Dimensions plugin. The width and height just return the actual width and height according to the box model. -- Brandon Aaron On 6/26/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: thanks glen, but dimensions also return the same

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Brandon Aaron
Sorry I thought you where looking for offsetWidth which is what outerWidth method does. -- Brandon Aaron On 6/26/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: thanks glen... but i don't completely agree, because technically, according to the box model, width does not include border, padding

[jQuery] Re: Overlay plugin?

2007-06-24 Thread Aaron Heimlich
(o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: how could I unbind .hover() ?

2007-06-22 Thread Brandon Aaron
The hover bind a mouseover and mouseout event and you can remove them by doing the following: $('div').unbind('mouseover').unbind('mouseout'); -- Brandon Aaron On 6/22/07, March [EMAIL PROTECTED] wrote: i did something like this: $('div').hover(function(){ // do something },function

[jQuery] Re: how could I unbind .hover() ?

2007-06-22 Thread Brandon Aaron
Unfortunately this won't work when using the hover helper method. The hover helper method assigns an anonymous method to both the mouseover and mouseout events. This anonymous function then decides if it should fire the given mouseover or mouseout functions provided to .hover(). -- Brandon Aaron

[jQuery] Re: Hash to array

2007-06-22 Thread Aaron Heimlich
certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.476 / Base de données virus: 269.9.4/860 - Date: 21/06/2007 17:53 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Ajax call - lost event handlers

2007-06-21 Thread Brandon Aaron
hands dirty with inline docs and minimal examples ... then you can start using it now. You can grab the latest here: http://jquery.com/plugins/project/behavior And see the example/test here: http://brandonaaron.net/jquery/plugins/behavior/test/test.html -- Brandon Aaron

[jQuery] Re: Ajax call - lost event handlers

2007-06-21 Thread Brandon Aaron
I would highly suggest grabbing the latest from SVN instead of the jQuery 1.1.3a download. -- Brandon Aaron On 6/21/07, AJ [EMAIL PROTECTED] wrote: It is true and it will be officially released once jQuery 1.1.3 is released. If you don't mind using jQuery 1.1.3 alpha and getting your

[jQuery] Re: Ajax call - lost event handlers

2007-06-21 Thread Aaron Heimlich
is not the right time to play with nightly builds ;-) --Klaus -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: create an empty jquery object

2007-06-20 Thread Aaron Heimlich
I believe it's var $emptyObj = jQuery([]); On 6/20/07, Gordon [EMAIL PROTECTED] wrote: Just a quick question, is there a way to quickly create a jQuery object that contains no elements at all so you can add() them as needed later in the script? -- Aaron Heimlich Web Developer [EMAIL

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Aaron Heimlich
-- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Lame fix but working - google toolbar takes over the div

2007-06-18 Thread Aaron Heimlich
This is already dealt with in 1.0 Final, but it's a good tip for people still using older versions. --Aaron On 6/18/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hey, in jorn's plugin and in serval more, if you put a div named email or firstname or whatever its writes ANNOYING message

[jQuery] Re: Content peeking through popup in IE - should bgiframe help?

2007-06-15 Thread Brandon Aaron
Sorry I don't have the answer but the bgiframe is primarily to fix z-index issues in IE with select elements. -- Brandon Aaron On 6/15/07, Scott Sauyet [EMAIL PROTECTED] wrote: Okay, I've been staring at this too long now... help! I have a div that is in-line when JS is off. With JS

[jQuery] Re: @mike: blockUI fix

2007-06-14 Thread Brandon Aaron
On the topic of blockUI ... could you change the name of the file to match the folder name: jquery.blockUI.js This will allow you to add a build task to the build.xml so you can quickly provide a min, pack and/or zipped version. -- Brandon Aaron On 6/14/07, Mike Alsup [EMAIL PROTECTED] wrote

[jQuery] Re: mouseover/mouseout vs. hover

2007-06-14 Thread Brandon Aaron
$(document).ready is the original and is what happens behind the scenes ... the shortcut is because we don't like typing. :) -- Brandon Aaron On 6/14/07, Charlie Concepcion [EMAIL PROTECTED] wrote: Thanks Rafael... Thanks Everyone! It works great, man I'm loving this simple jQuery syntax

[jQuery] Re: JS regular expressions for matching decimal numbers

2007-06-13 Thread Aaron Heimlich
You're very welcome. Glad I could help. On 6/13/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Aaron Heimlich wrote: Try this: /^(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/ Thanks, that works great. -- Jörn Zaefferer http://bassistance.de -- Aaron Heimlich Web Developer [EMAIL PROTECTED

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-13 Thread Brandon Aaron
... it should be. Perhaps even a note about how to add the svn properties like $REV$. -- Brandon Aaron On 6/13/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote: I thought about that! I tend to download both versions ... I sometimes want to look at what I'm using! The latest build script adds

[jQuery] Re: outerHTML

2007-06-13 Thread Brandon Aaron
Here is a link to a post not too long ago with an outerHTML plugin for jQuery. http://groups.google.com/group/jquery-en/msg/62a2e93f55119d48 -- Brandon Aaron On 6/13/07, Sean Catchpole [EMAIL PROTECTED] wrote: Can anyone else get the outerHTML of a html object? I can't seem to get

[jQuery] Re: Release: Validation plugin 1.0 final

2007-06-13 Thread Brandon Aaron
Thats awesome Jorn ... great work! -- Brandon Aaron On 6/13/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Its out! A version of the jQuery validation plugin that I call 1.0 final: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I hope to improve the versioning of the plugin

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
out). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: JS regular expressions for matching decimal numbers

2007-06-12 Thread Aaron Heimlich
http://bassistance.de -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
test to jQuery 1.1. [1] http://www.learningjquery.com/2006/12/quick-tip-optimizing-dom-traversal [2] http://aheimlich.freepgs.com/tests/jquery/speed-test-firebug/ -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
, but I can't be certain of that as I've never actually tried to do this. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Aaron Heimlich
( -- pink); is probably the best workaround. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Brandon Aaron
Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I also added to the patch renaming the parameter 'xml' and sometimes 'r' to 'xhr'. I think it makes it easier to read. http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js On 6/7/07, Mike

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Brandon Aaron
It is possible but you have to set wmode=transparent on the flash. One catch is that the element that shows up over flash can't have any opacity or it doesn't work in Safari or Firefox mac. :( -- Brandon Aaron On 6/8/07, Karl Swedberg [EMAIL PROTECTED] wrote: Actually, Adobe itself wasn't

[jQuery] Re: Getting the window/frame size with JQuery .. help

2007-06-08 Thread Brandon Aaron
The dimensions plugin extends the built-in height and width methods to work on the window and document. You can use them like this: $(window).width() or $(window).height() $(document).width() or $(document).height() http://jquery.com/plugins/project/Dimensions -- Brandon Aaron On 6/8/07

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Brandon Aaron
It is related to this bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 6/8/07, Rey Bango [EMAIL PROTECTED] wrote: Anyone? Rey Bango wrote: A buddy of mine sent me an email asking if I would look into a problem he was having. He's calling a page via $.ajax() using a 'get

[jQuery] Re: Ajax script loading issue

2007-06-08 Thread Brandon Aaron
It is still not fixed. -- Brandon Aaron On 6/8/07, Rey Bango [EMAIL PROTECTED] wrote: Was this address in v1.1.3? Rey... Brandon Aaron wrote: It is related to this bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 6/8/07, *Rey Bango* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED

[jQuery] Re: Possible Plugin for Adding New Event Types

2007-06-07 Thread Brandon Aaron
It is true that jQuery can already handle custom events quite well. This is more for normalizing existing events and enabling the usage of the bind syntax. -- Brandon Aaron On 6/7/07, SeViR [EMAIL PROTECTED] wrote: With jQuery is very simple make new event plugins. This is a sample plugin

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-07 Thread Aaron Scott
willing to call this case closed. A little disappointing, but closed. Thanks for all your help, Mike. This is part of a project that's going to see some widespread use, and I'll make sure you get some troubleshooting credit. Aaron

[jQuery] Re: dimensions plugin documentation

2007-06-07 Thread Brandon Aaron
It is true that the only documentation is within the file and that it needs more. I hope to write some better documentation soon. -- Brandon Aaron On 6/7/07, pd [EMAIL PROTECTED] wrote: Hello Apologies if I've missed something simple but I can't seem to find simple documentation

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-07 Thread Brandon Aaron
Looks like Ted Serbinski is part of the team behind it. http://tedserbinski.com/ -- Brandon Aaron On 6/7/07, Joel Birch [EMAIL PROTECTED] wrote: On 08/06/2007, at 7:25 AM, m3avrck wrote: Here's another to add: http://www.mothersclick.com -- one of the largest sites online for moms

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-06 Thread Aaron Scott
Actually you don't need to go that low-level. Take a peak at the generate method here: http://malsup.com/jquery/media/jquery.media.js I'm sorry, I've gone over the JS a thousand times and I'm not making any progress. My JS just isn't that strong. Looking over the generate method, it looks

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-06 Thread Aaron Scott
an invalid character code: 5 nsresult: 0x80530005 (NS_ERROR_DOM_INVALID_CHARACTER_ERR) location: http:// www.andcuriouser.com/sandbox/jqueryqt/test.html Line: 7] Thanks, Aaron

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-06 Thread Aaron Scott
/ param name=controller value=true / /object !--![endif]-- /object Anyway, this doesn't have any bearing on my JS problem. Aaron

[jQuery] Re: Input Selector

2007-06-06 Thread Aaron Heimlich
selects that have a value of too. :) Would that be: $(form table).find( tr.required [EMAIL PROTECTED]''],[EMAIL PROTECTED]''],).not([EMAIL PROTECTED]'false']); How do you tell the currently selected item in the select? Glen -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

[jQuery] Possible Plugin for Adding New Event Types

2007-06-06 Thread Brandon Aaron
in the same way. $(...).bind('mousewheel', fn); Are there other events that could be added/normalized with this plugin? BTW ... Here is the blog post about binding multiple event types: http://blog.brandonaaron.net/2007/06/05/bind-multiple-events-simultaneously-with-jquery/ -- Brandon Aaron

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Brandon Aaron
All you need is general sibling combinator like this: $('#appendExtraAppointments ~ li').remove(); More info on the selector. http://www.w3.org/TR/2005/WD-css3-selectors-20051215/#general-sibling-combinators http://docs.jquery.com/DOM/Traversing/Selectors -- Brandon Aaron On 6/5/07, [EMAIL

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Brandon Aaron
Here is the mouse wheel plugin to help get you started with that. :) http://jquery.com/plugins/project/mousewheel -- Brandon Aaron On 6/5/07, sebastianw wurtz [EMAIL PROTECTED] wrote: Thx guys both solutions work very good and my guestbook look perfect. The next i want to do is study

[jQuery] Re: Ext Calendar on top of jQuery

2007-06-05 Thread Aaron Heimlich
/trunk/jquery/src/event/event.js#L64 On Apr 17, 12:52 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Moving to addEventListener and attachEvent is on the todo list. When will it be done? Soon :) It will involve a lot of regression testing to make sure we don't cause any problems in the transition

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-06-05 Thread Brandon Aaron
Thanks for the kind words and testing out jQuery 1.1.3a! Hopefully the last couple of bugs in 1.1.3a will be resolved soon and 1.1.3 will be out the door. -- Brandon Aaron On 6/5/07, cdomigan [EMAIL PROTECTED] wrote: Can I just say that I've started using Jquery 1.1.3a with Ext and it's

[jQuery] Re: select value lost after clone in IE

2007-06-04 Thread Brandon Aaron
Could you please create a new ticket for this? Thanks. -- Brandon Aaron On 6/4/07, Jesse Skinner [EMAIL PROTECTED] wrote: It seems that after a jQuery clone(), the value of select boxes are lost in IE (but not Firefox). Try this out: div select option value=0one

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-04 Thread Aaron Scott
I've found that it is somewhat unreliable to add object elements using innerHTML. For my media plugin I resorted to using DOM methods to add media in IE. For an example, look at the generate method at the bottom of this file: http://malsup.com/jquery/media/jquery.media.js Thanks for your

[jQuery] Re: onfocus filter question

2007-06-01 Thread Brandon Aaron
the behavior plugin here (requires jQuery Rev 1845+): http://brandonaaron.net/jquery/plugins/behavior/ -- Brandon Aaron On 5/31/07, John R [EMAIL PROTECTED] wrote: I have a table with rows of input fields that is dynamic in that the user can add / remove rows. I'm trying to trigger a function whenever

[jQuery] Unbind not working in IE6

2007-06-01 Thread Aaron Scott
Demonstration code: code script src=thickbox/jquery-latest.pack.js type=text/javascript/ script script type=text/javascript function TB_keyCatch() { $(document).keydown(function(e) { alert(triggering hit); $(document).unbind( keydown );

[jQuery] Re: FIX: Firefox throwing NS_ERROR_XPC_JS_THREW_STRING when using input.focus()

2007-06-01 Thread Brandon Aaron
Nice, thanks for the info. I have encountered this a few times myself. -- Brandon Aaron On 6/1/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: While this isn't specifically related to jQuery, it certainly could affect jQuery users, so I thought I'd post the link. It appears Firefox 1.5

[jQuery] Re: Unbind not working in IE6

2007-06-01 Thread Aaron Scott
itself, and now things work as expected. Aaron

[jQuery] Re: jQuery and Prototype Conflicts

2007-06-01 Thread Brandon Aaron
You shouldn't need to call noConflict more than once. Could you post up an example? -- Brandon Aaron On 6/1/07, DaveG [EMAIL PROTECTED] wrote: I'm using prototype and jQ on the same page. I'm using noConflict(). script src=/javascripts/jquery.js type=text/javascript/script script type=text

[jQuery] Re: embedding script behaviour different in IE and FF

2007-05-31 Thread Brandon Aaron
It is an issue with the evalScripts() method within jQuery. Here is a ticket about this particular bug: http://dev.jquery.com/ticket/975 -- Brandon Aaron On 5/30/07, weepy [EMAIL PROTECTED] wrote: Hi, I'm using $.ajax to pull down some HTML and insert it into the dom. The HTML has some

[jQuery] Re: Improving performance in FireFox/Opera

2007-05-31 Thread Brandon Aaron
jQuery 1.1.3 aims to provide huge performance boost to multiple animations. Feel free to give jQuery 1.1.3a a whirl and let us know if that helps out any. -- Brandon Aaron On 5/31/07, Gordon [EMAIL PROTECTED] wrote: I am working on a project that involves a varying, but potentially quite

[jQuery] Re: Improving performance in FireFox/Opera

2007-05-31 Thread Brandon Aaron
not really sure whats up with opera. It is usually very fast with JavaScript. -- Brandon Aaron On 5/31/07, Gordon [EMAIL PROTECTED] wrote: Okay, I'll give it a try, once I've gotten a link. I understand that the animate() function in 1.1.2 starts a timer for every element attribute being

[jQuery] Re: JQuery DOM manipulation: memory leaks?

2007-05-31 Thread Brandon Aaron
I think I just fixed this leak in revision [2010] of jQuery. It had to do with the global cache of events. Please grab the latest from SVN to see if that fixes the issue. -- Brandon Aaron On 5/31/07, Ruchi [EMAIL PROTECTED] wrote: Hi, I'm a JS and JQuery newbie and I'm trying to resolve

[jQuery] Re: IE selector bug/error - now reproducable.

2007-05-30 Thread Brandon Aaron
I'm not able to reproduce this in FF. Your using jQuery 1.1.3a? Is your HTML valid? Could you post up the test page for the group to look at? A workaround might be to use .find(). $('.search-advanced').find('#classtest').hide(); -- Brandon Aaron On 5/30/07, Luc Pestille [EMAIL PROTECTED

[jQuery] Re: $(document).ready limits

2007-05-30 Thread Brandon Aaron
Are you using the defer attribute on any of your scripts? -- Brandon Aaron On 5/30/07, weepy [EMAIL PROTECTED] wrote: Hi I have a project where I am using Ajax to squirt some HTML and script into the DOM. The script currently has a document.ready around it which appears to fire ok when

[jQuery] Re: $(document).ready limits

2007-05-30 Thread Brandon Aaron
Yes it is. It has been known to cause problems when used in conjunction with jQuery scripts that use ready. It is rare that the ready method doesn't work properly in IE. Could you maybe post up a simplified test case? Try to narrow it down. -- Brandon Aaron On 5/30/07, weepy [EMAIL PROTECTED

[jQuery] Re: IE selector bug/error - now reproducable.

2007-05-30 Thread Brandon Aaron
the error shows up? -- Brandon Aaron

[jQuery] Re: Widgetbox variables, problems with $()

2007-05-30 Thread Brandon Aaron
owner. I just re-opened up my blog with a post about this yesterday. http://blog.brandonaaron.net/2007/05/29/using-jquery-with-other-libraries/ -- Brandon Aaron On 5/30/07, MrNase [EMAIL PROTECTED] wrote: I just released a Farbtastic Widget on Widgetbox.com During the creation of the Widget

[jQuery] Re: Widgetbox variables, problems with $()

2007-05-30 Thread Brandon Aaron
That is what the jQuery.noConflict() is for. :) Just do this: var $j = jQuery.noConflict(); -- Brandon Aaron On 5/30/07, MrNase [EMAIL PROTECTED] wrote: As I see now, the problem still exists. jQuery doesn't know what to do with - var userlanguage = ${config.userlanguage}; I would need

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-30 Thread Brandon Aaron
I've added a new patch to the ticket based on Volker's patch. Can you please confirm that it does indeed fix the problem? http://dev.jquery.com/ticket/1143 -- Brandon Aaron On 5/24/07, Jean-Francois Hovinne [EMAIL PROTECTED] wrote: Thanks for your quick reply, John, and sorry for annoying

[jQuery] Re: massive jquery memory leak in firefox 2.x: load() or empty()?

2007-05-29 Thread Brandon Aaron
Is the memory given back after a refresh? -- Brandon Aaron On 5/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I assume this is a memory leak: $(#id).empty(); $(#id).load(url, params, callback) increases more and more the memory usage of firefox even if the content is replaced (in my

[jQuery] Re: Dev and plugins lists

2007-05-29 Thread Brandon Aaron
No I believe they are in the process of being transitioned to Google Groups. Feel free the post anything to this list for now. -- Brandon Aaron On 5/29/07, Mika Tuupola [EMAIL PROTECTED] wrote: Are the dev and plugins lists up at the moment? -- Mika Tuupola http

[jQuery] Re: trigger $(document).ready manually

2007-05-29 Thread Brandon Aaron
this are. Perhaps the problem can be solved in a better way? -- Brandon Aaron On 5/29/07, MathiasBank [EMAIL PROTECTED] wrote: Good evening, It is possible to call 1. $('#field').trigger(click); 2. $(document).trigger(myOwnEvent); But it seems, that this is not possible to call $(ducument).trigger

[jQuery] Re: getting DOM values

2007-05-29 Thread Brandon Aaron
with widths, heights and offsets. http://jquery.com/plugins/project/dimensions -- Brandon Aaron On 5/29/07, pd [EMAIL PROTECTED] wrote: Hi BjQ (before jQuery) I can do this: document.getElementById('foo').clientWidth to get a DOM value that Firebug tells me is set to something other than

[jQuery] Re: getting DOM values

2007-05-29 Thread Brandon Aaron
Here are the docs for .get( Number ) http://jquery.bassistance.de/api-browser/#getNumber -- Brandon Aaron On 5/29/07, pd [EMAIL PROTECTED] wrote: Thanks guys, super-fast reply :) Is this documented anywhere? I've scanned through the API and didn't see anything for what seems to be a pretty

[jQuery] Re: CSS3 support

2007-05-28 Thread Brandon Aaron
We don't support any declarations that the browser itself doesn't support. However, there are plugins (lots of them) that solve lots of different problems. There are several plugins that handle rounded corners. Here is one of them: http://www.malsup.com/jquery/corner/ -- Brandon Aaron On 5/28

[jQuery] Re: Question about scroll in dimensions plugin

2007-05-28 Thread Brandon Aaron
Very cool! Thanks for keeping us in the loop. :) -- Brandon Aaron On 5/28/07, Wizzud [EMAIL PROTECTED] wrote: Brandon, just an update in case you are interested. I've made a few changes to the YUI visual test page to try and find out where YUI was going wrong in Firefox. My test page can

[jQuery] Re: OOP's *this* messing up $().each()'s *this*

2007-05-28 Thread Brandon Aaron
to access it. ... this.functionname = function() { var self = this; $('td.number').each(function(_i) { $(this).html(self.mainvar[_i]); }); } ... -- Brandon Aaron On 5/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Confusing title, but whatever. So basically I'm working on my first

[jQuery] Re: addClass and removeClass not working in IE6

2007-05-27 Thread Brandon Aaron
This is an issue with your CSS. IE6 doesn't seem to like the .class#id selector. You might need to rethink your approach. Perhaps keep the unordered list and add the class to the li. That way you can reference each part like this: .class #id Hope that helps. -- Brandon Aaron On 5/26/07

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Brandon Aaron
Hmmm I'm curious ... which cell phone browsers will show the script? Do you have or know of any articles on the topic? -- Brandon Aaron On 5/27/07, Matt Stith [EMAIL PROTECTED] wrote: True, but alot of cell phone browsers will show the scripts if its not commented out. On 5/27/07, RobG

[jQuery] Re: Question about scroll in dimensions plugin

2007-05-26 Thread Brandon Aaron
the server change I'm having problems getting to the previous test page. -- Brandon Aaron On 5/26/07, Wizzud [EMAIL PROTECTED] wrote: YUI getXY demo reinstated (see initial post for link). Brandon Aaron wrote: This is now fixed and you can grab the latest from svn and/or here: http://jquery.com

[jQuery] Re: Printing pages manipulated by jQuery

2007-05-26 Thread Brandon Aaron
helpful: http://alistapart.com/stories/goingtoprint/ -- Brandon Aaron On 5/26/07, Feed [EMAIL PROTECTED] wrote: Hello all, I've used jQuery to manipulate, stripe and add hover effect to all tables in my website (dozens of tables). There's a print button in my website and I didn't remember

[jQuery] Re: Effect Queueing Plugin

2007-05-25 Thread Brandon Aaron
Nice. I believe it is worth polishing up! Keep at it. -- Brandon Aaron On 5/25/07, Erik Beeson [EMAIL PROTECTED] wrote: Hello all, In response to a thread yesterday, I put together a little framework for effect queueing. My version yesterday, and subsequently Brandon's version aswell, don't

[jQuery] Re: 15 second delay with IE

2007-05-25 Thread Brandon Aaron
Not at all. I actually believe you might get better results using the min version plus gzip. -- Brandon Aaron On 5/25/07, Bil Corry [EMAIL PROTECTED] wrote: R. Rajesh Jeba Anbiah wrote on 5/25/2007 6:26 AM: Mostly the problem is with the packed version. Try using the original version

[jQuery] Re: Effect Queueing Plugin

2007-05-25 Thread Aaron Heimlich
if it turns out this isn't really very useful, or if it's already been implemented in SVN or whatever. Is this useful to anybody? Is it worth polishing up a little more? --Erik -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
I just updated the test to include an empty selector as well. -- Brandon Aaron On 5/24/07, Brandon Aaron [EMAIL PROTECTED] wrote: Here is a pretty quick and dirty implementation of an fxqueue: http://brandonaaron.net/jquery/plugins/fxqueue/ You can see the test page here: http

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Glad it is working for you. :) I just updated it to fix the scope of the callback and you can now pass params just like you can with animate. Check the new test page to see. http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html -- Brandon Aaron On 5/24/07, Gordon [EMAIL PROTECTED

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Aaron Heimlich
Pretty cool stuff Brandon! Small typo though: jquery.fxqueue.js line 37: $this = $( args.shift() ); should be var $this = $( args.shift() ); On 5/24/07, Brandon Aaron [EMAIL PROTECTED] wrote: Glad it is working for you. :) I just updated it to fix the scope of the callback and you can

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Ahh good catch! Thanks Aaron. Fixed. I used a semi-colon on the line above instead of a comma. :) -- Brandon Aaron On 5/24/07, Aaron Heimlich [EMAIL PROTECTED] wrote: Pretty cool stuff Brandon! Small typo though: jquery.fxqueue.js line 37: $this = $( args.shift() ); should be var

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Sure but I wonder what that would look like? Could you provide a more detailed use-case? -- Brandon Aaron On 5/24/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brandon Aaron wrote: Here is a pretty quick and dirty implementation of an fxqueue: http://brandonaaron.net/jquery/plugins/fxqueue

[jQuery] Re: Feature/Plugin request - Animation queue

2007-05-24 Thread Brandon Aaron
Actualy, the hoverIntent plugin is perfect for this. http://cherne.net/brian/resources/jquery.hoverIntent.html -- Brandon Aaron On 5/24/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brandon Aaron wrote: Sure but I wonder what that would look like? Could you provide a more detailed use-case

<    1   2   3   4   5   6   7   8   >