[jQuery] Re: jdmenu and new dimensions issue?

2007-09-25 Thread Brandon Aaron
a more meaningful error? Could you upload a demo of the issue? -- Brandon Aaron On 9/25/07, Eridius [EMAIL PROTECTED] wrote: I know it work with the older version the jdmenu comes with however i also am using the jQuery UI which needs the newer version and i can't use both versions

[jQuery] Re: jdmenu and new dimensions issue?

2007-09-25 Thread Brandon Aaron
Aaron On 9/25/07, Eridius [EMAIL PROTECTED] wrote: A demo of the issue is at: www.kaizendigital.com/index2.php Note you have to use FF right now cause IE is even more broken. if you hover over products, you will get the error. can't test out a unpack till later tonight. Brandon Aaron

[jQuery] Re: Plugin Question

2007-09-25 Thread Brandon Aaron
Inside the plugin this is actually the jQuery object that the plugin was called on. (function($) { $.fn.plugin = function() { console.log(this); // the jQuery collection/object }; })(jQuery); -- Brandon Aaron On 9/25/07, Eridius [EMAIL PROTECTED] wrote: Ok, lets say i

[jQuery] Validation Plugin 1.2 ETA

2007-09-25 Thread Aaron Heimlich
Jorn, Is there an ETA on version 1.2 of your validation plugin? Thanks, Aaron -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: dimensions issue?

2007-09-25 Thread Brandon Aaron
The jQuery collection is empty ... meaning it didn't match any any elements. Which means my_element.length == 0 -- Brandon Aaron On 9/25/07, Eridius [EMAIL PROTECTED] wrote: [Exception... 'Dimensions: jQuery collection is empty' when calling method: [nsIDOMEventListener::handleEvent

[jQuery] Re: How to create dom element with a defined behaviour ?

2007-09-23 Thread Brandon Aaron
associated with selectors that will bind those behaviors to all newly matched elements. http://jquery.com/plugins/project/livequery -- Brandon Aaron On 9/23/07, xavier [EMAIL PROTECTED] wrote: Hello, I found myself adding elements to a page, and then adding behaviour to these elements. What I

[jQuery] Re: jdmenu and new dimensions issue?

2007-09-23 Thread Brandon Aaron
What issue are you referring to? -- Brandon Aaron On 9/23/07, Eridius [EMAIL PROTECTED] wrote: Does anyone know if the issue with the new dimensions(the one with the jQuery UI) is being worked out with jdmenu cause i need to use both or is there a menu system like jdmenu under development

[jQuery] Re: jquery 1.2.1 bug (copy iframe data to parent bug)

2007-09-22 Thread Brandon Aaron
This is a security limitation in IE and I believe Firefox 3 will have it as well. -- Brandon Aaron On 9/21/07, linuja [EMAIL PROTECTED] wrote: copy the data in iframe to its parent. It works fine in firefox and opera, bug it can't in ie(both ie6 and ie7). here is the test case. the main

[jQuery] Re: jquery 1.2.1 bug (copy iframe data to parent bug)

2007-09-22 Thread Brandon Aaron
Thanks for clearing that up Michael! :) -- Brandon Aaron On 9/22/07, Michael Geary [EMAIL PROTECTED] wrote: Just to clarify, code inside an iframe from the same domain as its parent *can* manipulate the DOM in the parent, and vice versa. What you can't do is move or copy DOM nodes between

[jQuery] Re: filtering elements

2007-09-22 Thread Brandon Aaron
, img'); andSelf is a jQuery 1.2 method. If you are using an earlier version you could use $('*', data).add(data) -- Brandon Aaron On 9/22/07, Pops [EMAIL PROTECTED] wrote: I noticed some example using something like so: data = $(data).not(style, meta, link, script, title); to filter out

[jQuery] Re: filtering elements

2007-09-22 Thread Brandon Aaron
! :) -- Brandon Aaron On 9/22/07, Pops [EMAIL PROTECTED] wrote: Hi Brandon, Let me try this I'm not seeing it work. Here is my test code. I tried all 3 methods: html head script type='text/javascript' src='/public/js/jquery-1.2.1.js'/ script script //!-- function testFilter

[jQuery] Re: filtering elements

2007-09-22 Thread Brandon Aaron
with a set width/height (maybe a max width/height). Actually I think there is a truncate plugin ... yup, there is (http://www.reindel.com/truncate/). I'm not sure if that helps or not. -- Brandon Aaron On 9/22/07, Pops [EMAIL PROTECTED] wrote: Hi Brandon, Maybe you can assist here as well. What

[jQuery] Re: $(document) bug?

2007-09-21 Thread Brandon Aaron
The $(document).height() issue is resolved in SVN. Try using $(window).resize() instead of $(document).resize(). -- Brandon Aaron On 9/21/07, Hackfrag [EMAIL PROTECTED] wrote: I have the same Problem :( On 13 Sep., 17:20, hans [EMAIL PROTECTED] wrote: Hi, I just downloaded the latest

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-21 Thread Brandon Aaron
Nice. Thanks for sharing! -- Brandon Aaron On 9/21/07, Christian Bach [EMAIL PROTECTED] wrote: Hi list, The other day i got feed up with ie6 not having :hover css support so i decided to fix it. Here is a simple script that solves the problem: http://lovepeacenukes.com/jquery/ie6hoverfix

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-21 Thread Brandon Aaron
Well why not fix :after and :before too :) -- Brandon Aaron On 9/21/07, Christian Bach [EMAIL PROTECTED] wrote: Yeah that would make sense! A other thing that could be use full is to have a fix for the :focus selector in IE6. All though it will be returned as unknown in ie6. If you want

[jQuery] Re: Delayed response using Live Query

2007-09-20 Thread Brandon Aaron
'); $('#target').html('input class=date'); }; -- Brandon Aaron On 9/20/07, leon14850 [EMAIL PROTECTED] wrote: Hi, all! I'm experiencing a strange problem with Live Query. When I add elements to the DOM, they aren't picked up until I click a pre- existing element with a jQuery behavior. The key parts

[jQuery] Re: Gradient Filter for FireFox or Mozilla

2007-09-20 Thread Brandon Aaron
No but you could use Canvas or you could use the gradient plugin. http://jquery.com/plugins/project/gradient I've been thinking about updating the gradient plugin to use canvas but just don't have the time right now. -- Brandon Aaron On 9/20/07, Pops [EMAIL PROTECTED] wrote: I'm wondering

[jQuery] Re: jqDnR - jQuery 1.2 and Dimensions problem

2007-09-20 Thread Brandon Aaron
of the functionality (offset and window/document height/width) went into the core. I'm curious to know if it is a problem with jqDnR or the new offset method. I'll see if I can take a look at this sometime soon as well. -- Brandon Aaron On 9/20/07, tlphipps [EMAIL PROTECTED] wrote: I noticed in SVN

[jQuery] Re: test

2007-09-18 Thread Aaron Heimlich
success! On 9/17/07, KushM [EMAIL PROTECTED] wrote: test -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: JSPacker for .NET

2007-09-17 Thread Brandon Aaron
You need to use JSMin to get the file size down to ~14k with gzip. -- Brandon Aaron On 9/17/07, Jeffrey Kretz [EMAIL PROTECTED] wrote: I've spend the last few days building a .NET implementation of a gzip packer. It accepts an argument like either of these two: script type=text

[jQuery] Re: JSPacker for .NET

2007-09-17 Thread Brandon Aaron
Yeah the initial file size results from the packer are better but the end results after gzipping is usually better with jsmin. It would seem that the .Net gzip library has some limitations. -- Brandon Aaron On 9/17/07, Jeffrey Kretz [EMAIL PROTECTED] wrote: Actually, Dean's packer is a bit

[jQuery] Re: Stripping query string from URI?

2007-09-15 Thread Brandon Aaron
Looks like Jon already fixed it. -- Brandon Aaron On 9/14/07, Stosh [EMAIL PROTECTED] wrote: There's a ticket opened for this: http://dev.jquery.com/ticket/1579 But does anyone know the rationale here? Is there any chance we can get this fixed in 1.2.1? I like the concept

[jQuery] Re: grabbing event.target using it load - no longer works for me in 1.1.4+

2007-09-14 Thread Brandon Aaron
I think you want to get the event.target.href. You are passing the whole element which is an A tag. Which its toString() method reports the href value and is why the +event.target works. var resultlink = event.target.href; -- Brandon Aaron On 9/14/07, skatta [EMAIL PROTECTED] wrote: yeah

[jQuery] Re: Downloading 1.2 minified, getting 46kb instead of 14kb ??!?

2007-09-14 Thread Brandon Aaron
Hmmm ... jQuery can still be packed and gzipping can be done in IIS without much effort. We are doing it for our .Net projects. -- Brandon Aaron On 9/14/07, Stephan Beal [EMAIL PROTECTED] wrote: On Sep 14, 4:46 pm, Rey Bango [EMAIL PROTECTED] wrote: I think underhanded is a little harsh

[jQuery] Re: Faster then innerHTML

2007-09-13 Thread Brandon Aaron
( newEl ); }).pushStack( stack ); }; -- Brandon Aaron On 9/12/07, Steve L. [EMAIL PROTECTED] wrote: John, I slapped this modified version of my test page together in a couple minutes: http://stevenlevithan.com/demo/replaceHtml_jQuery.html jQuery.html() seems to perform pretty terribly

[jQuery] Re: jquery 1.2 bug -- clone(true) doesn't copy the event in ie(ie6 and ie7)

2007-09-13 Thread Brandon Aaron
Okay I finally found a little time to take a look at this and I can confirm that it is not working. I'll be committing a fix to SVN soon and it will be in the upcoming jQuery 1.2.1. -- Brandon Aaron On 9/13/07, linuja [EMAIL PROTECTED] wrote: sorry, i forget show the code. here it is: ?xml

[jQuery] Re: jquery 1.2 bug -- clone(true) doesn't copy the event in ie(ie6 and ie7)

2007-09-13 Thread Brandon Aaron
Okay, I just committed the fix for this in SVN. Feel free to grab the latest version from SVN to get this working properly. -- Brandon Aaron On 9/13/07, Brandon Aaron [EMAIL PROTECTED] wrote: Okay I finally found a little time to take a look at this and I can confirm that it is not working

[jQuery] Re: use validate plugin in ajaxSubmit

2007-09-13 Thread Aaron Heimlich
On 9/13/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: var options = { target:'#output1', }; Get rid of the trailing comma after '#output1'. Other than that, I can't see anything wrong with your code. --Aaron -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Aaron Porter
the packed version's initial hit at startup, packed and minified versions should perform the same. Aaron

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Brandon Aaron
BTW ... the same functionality can now be achieved with jQuery 1.2 and the update .load() method. http://docs.jquery.com/Ajax/load#urldatacallback -- Brandon Aaron On 9/12/07, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote: -Original Message- From: Rey Bango [mailto:[EMAIL

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Brandon Aaron
, that would be great! Note that the new offset method does not have any options and any relative offsets will need to be calculated manually. The upcoming new dimensions plugin (currently in SVN) no longer has an offset or offsetLite method. It still has offsetParent and position though. -- Brandon Aaron

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-12 Thread Brandon Aaron
I think you might be able to use John's modified version of Rhino that acts like a browser. Where it is I'm not sure but it wasn't that long ago that he wrote it. -- Brandon Aaron On 9/12/07, Sean Catchpole [EMAIL PROTECTED] wrote: Hi Rob, .ready() won't work in Rhino since there is no page

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Brandon Aaron
the justification for your comments. I especially don't see a pattern of disregard for backwards compatibility. -- Brandon Aaron

[jQuery] Re: Does 1.2 now negate the need for liveQuery?

2007-09-11 Thread Brandon Aaron
You will still need to use Live Query for that functionality. -- Brandon Aaron On 9/11/07, Phillip B Oldham [EMAIL PROTECTED] wrote: Hi all I remember something being mentioned that 1.2 would remove the need for the liveQuery plugin, binding relevant events to elements added in a DOM

[jQuery] Re: Does 1.2 now negate the need for liveQuery?

2007-09-11 Thread Brandon Aaron
You do still need to call the .livequery() method but it isn't in the core for 1.2 ... so you will still need to include the jquery.livequery.js file. -- Brandon Aaron On 9/11/07, Andy Matthews [EMAIL PROTECTED] wrote: I think you have to call the live method, but I believe that it's built

[jQuery] Re: ajaxForm and validate question

2007-09-11 Thread Aaron Heimlich
() is where the form submission actually happens. More details: http://www.malsup.com/jquery/form/#api -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Tablesorter plugin doesn't work properly with 1.2

2007-09-11 Thread Brandon Aaron
I think the author is going to release an update that fixes this soon. -- Brandon Aaron On 9/11/07, dobosgy [EMAIL PROTECTED] wrote: Tablesorter 2.0 plugin doesn't work properly with JQuery 1.2. If I bind a click function to the items in the table, it works well, as far as I try to sort

[jQuery] Re: jquery pageloader

2007-09-07 Thread Aaron
Has anyone have a detailed solution for this or an example page i could take a look at? Thanks! On Sep 7, 9:19 am, Simpel [EMAIL PROTECTED] wrote: hmm...I quess sometimes stuff is a lot easier than you think thanks for the info though! On 6 Sep, 17:21, Renaud [EMAIL PROTECTED] wrote:

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-05 Thread Aaron Heimlich
appropriate, e.g. $(.foobar) -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-05 Thread Aaron Heimlich
4.01 Spec: id = name [CS] (CS means case sensitive --Aaron) This attribute assigns a name to an element. This name must be unique in a document. From the XML 1.0 Spec Validity constraint: ID Values of type ID MUST match the Name production. A name MUST NOT appear more than once in an XML

[jQuery] Re: Request: Quick tutorial on jQuery filtering/limiting methods

2007-09-05 Thread Aaron Heimlich
://www.malsup.com/jquery/form/). I've never done form handling without it, so I wouldn't know. [3] More specifically, $_POST['spam'] or $_GET['spam'] depending on how the form was submitted -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Live Query and tables problem

2007-09-05 Thread Brandon Aaron
Query and the example shows that the error doesn't exist in a simple test case. If you could provide a test page that shows that error, that would be great. -- Brandon Aaron On 9/5/07, Jean [EMAIL PROTECTED] wrote: Sorry but your example isnt work now i remove the login validation http

[jQuery] Re: Live Query and tables problem

2007-09-04 Thread Brandon Aaron
Are there any other scripts included? Would you mind posting up the example? -- Brandon Aaron On 9/4/07, Jean [EMAIL PROTECTED] wrote: Is a very simple example and dont works =/ $('tr').livequery('mouseover', function(){ $(this).addClass('hover');}); t has no properties [Break

[jQuery] Re: Live Query and tables problem

2007-09-04 Thread Brandon Aaron
I wasn't able to see that site but I went ahead and created a small test case based on the information you provided. http://brandonaaron.net/jquery/issues/livequery/table_test/table_test.html I'm not able to reproduce the error you are getting. -- Brandon Aaron On 9/4/07, Jean [EMAIL PROTECTED

[jQuery] Re: Graceful degradation (Safari 2)

2007-08-30 Thread Brandon Aaron
The example you posted is a very specific bug in Safari and running it for other browsers would be incorrect. We do feature/object checking when it is possible. -- Brandon Aaron On 8/30/07, Matt Kruse [EMAIL PROTECTED] wrote: On Aug 30, 7:15 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I

[jQuery] Re: Graceful degradation (Safari 2)

2007-08-30 Thread Brandon Aaron
affected another browser/engine. -- Brandon Aaron

[jQuery] Re: Graceful degradation (Safari 2)

2007-08-30 Thread Brandon Aaron
ticket with a test case and even better a patch. Thanks :) -- Brandon Aaron On 8/30/07, Michael Geary [EMAIL PROTECTED] wrote: In this case you are fixing a bug that happens to appear in one browser, but why limit the fix to only that browser? What if another browser based on Safari comes

[jQuery] Re: Release: Accordion 1.5

2007-08-29 Thread Brandon Aaron
Firebug has a tendency to say that every once in a while. Restart Firefox and see if it still has the error. -- Brandon Aaron On 8/29/07, Erin Doak [EMAIL PROTECTED] wrote: It's late and maybe I'm wrong but there seems to be an infinite recursion error (Firebug says too much recursion) when

[jQuery] Re: How do child selectors work in jQuery?

2007-08-29 Thread Brandon Aaron
... instead of all the a tags within the li. $('#test li a').click(...); -- Brandon Aaron On 8/29/07, Jeroen Coumans [EMAIL PROTECTED] wrote: Hi, See http://lab.jeroencoumans.nl/jquery/child-selector.html It's my understanding that child selectors only select direct children of an element

[jQuery] Re: Live Query with Draggables

2007-08-29 Thread Brandon Aaron
The ID shouldn't be necessary at all ... it just provides some context to make the selector faster. I'll try out your example soon to see if I can spot the issue. -- Brandon Aaron On 8/28/07, Theodore Ni [EMAIL PROTECTED] wrote: I know exactly what you mean, and it makes perfect sense, and now

[jQuery] Re: How do child selectors work in jQuery?

2007-08-29 Thread Brandon Aaron
Actually it works this way in the CSS Spec also and your test file proves it. Just use this selector instead of your other selector: #test li a -- Brandon Aaron On 8/29/07, Jeroen Coumans [EMAIL PROTECTED] wrote: Thanks for the explanation, that makes sense. But this is not how the CSS

[jQuery] Re: How do child selectors work in jQuery?

2007-08-29 Thread Brandon Aaron
Whoops :) that should be: #test li a That will only select the direct a tags of the LI. Previously you where selecting all A tags of the LI. Even the A tags within the other child elements of the LI. -- Brandon Aaron On 8/29/07, Brandon Aaron [EMAIL PROTECTED] wrote: Actually it works

[jQuery] Re: Graceful degradation (Safari 2)

2007-08-29 Thread Brandon Aaron
The Safari version is actually the WebKit build number. Which is 413 for Safari 2. -- Brandon Aaron On 8/29/07, Karl Rudd [EMAIL PROTECTED] wrote: If you're using jQuery 1.1.3 or later you can test for the version of Safari really easily: if ( $.browser.safari parseFloat($.browser.version

[jQuery] Re: Why isn't there top() and left() methods in the dimension plugin ?

2007-08-28 Thread Brandon Aaron
You can very easily add these helper methods to your own app like this: jQuery.fn.left = function() { return this.offset({scroll:false}).left; }; jQuery.fn.top = function() { return this.offset({scroll:false}).top; }; -- Brandon Aaron On 8/28/07, Olivier Percebois-Garve [EMAIL

[jQuery] Re: Live Query with Draggables

2007-08-28 Thread Brandon Aaron
(Draggable); Now Live Query will know to watch for changes created by the Draggable code. -- Brandon Aaron On 8/28/07, Theodore Ni [EMAIL PROTECTED] wrote: Hey guys, I'm having a spot of trouble combining live query with interface draggables, and I'm afraid I don't have the time to study

[jQuery] Re: How optimize $(this).children(span).children(a).html(it works);

2007-08-28 Thread Brandon Aaron
This should work then: $(' span a', this).html('it works'); -- Brandon Aaron On 8/28/07, Erik Beeson [EMAIL PROTECTED] wrote: $(this).children(span).children(a).html(it works); I would have chosen the following $(span a,this).html(it works); I think that isn't quite the same thing

[jQuery] Re: Live Query with Draggables

2007-08-28 Thread Brandon Aaron
').livequery(...); Could you upload an example somewhere that we could see? -- Brandon Aaron On 8/28/07, Theodore Ni [EMAIL PROTECTED] wrote: That sounds like it should work, but it isn't doing anything. I think there must be something wrong with my fundamental understanding of how jQuery

[jQuery] Re: Trigger global event is slow in 1.1.4

2007-08-28 Thread Aaron Heimlich
with blockUI ). In 1.1.3.1, elements with global event are stored in an array. Any ideas? -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread Brandon Aaron
Actually John checked in this functionality to SVN (r2891) just the other day. You can use it like this: $('#myElem').load('somepage.html div#conent'); Pretty cool stuff. -- Brandon Aaron On 8/27/07, Glen Lipka [EMAIL PROTECTED] wrote: Brad Neuberg had developed this thing called Purple

[jQuery] Re: Problem with $(document) and actually with every $(...) call

2007-08-26 Thread Brandon Aaron
Heh no worries ... we've all done the same thing before ... at least I have :) -- Brandon Aaron On 8/26/07, PCPbSlack [EMAIL PROTECTED] wrote: Somebody please delete this, because I am stupid. Is my fault! I am so shamed! On Aug 26, 4:58 pm, PCPbSlack [EMAIL PROTECTED] wrote: First

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-26 Thread Brandon Aaron
WebKit nightlies and Safari 3 disregard any timers less than 10ms and according to this article so does IE and Firefox. See the section titled (3) JS Timeouts and Intervals here: http://webkit.org/blog/?p=96 -- Brandon Aaron On 8/26/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Pops schrieb

[jQuery] Re: attr({'type':'hidden'}) in IE6

2007-08-26 Thread Aaron Heimlich
On 8/26/07, Minh [EMAIL PROTECTED] wrote: If it's validated then I need to disabled or hide it so the user can't edit it. Try using the readonly attribute instead of disabling or hiding it, e.g. $(#inputID).attr(readOnly, true). But I have to ask: Why would you want to do this? -- Aaron

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-25 Thread Brandon Aaron
If only everything was so cut and dry. -- Brandon Aaron On 8/25/07, Pops [EMAIL PROTECTED] wrote: Eric, anyone can come up with a solution. But if we strictly talking about jQuery and using it in an optimized, reliable, maximum support possible, then no. I think the patch I illustrated

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-25 Thread Aaron Heimlich
. Originally it was, though, which was what brought up this issue[1] in the first place. The timer was implemented as a solution to memory leak issue (no event handlers, nothing to leak). [1] http://dev.jquery.com/ticket/991 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: [NEWS] Comparison of different compressed jQuery Versions with GZip

2007-08-24 Thread Aaron Porter
/ Aaron Tane Piper wrote: I've just tried it with the latest nightly: jQuery 1.4(a2) Uncompressed: 4 bytes jQuery 1.4(a2) Minified: 37709 bytes jQuery 1.4(a2) Min + GZip: 11989 bytes On 8/23/07, Rey Bango [EMAIL PROTECTED] wrote: Simply amazing! 10k gzipped! Tane Piper wrote

[jQuery] Re: IE memory problem (still)

2007-08-24 Thread Brandon Aaron
Michael, please try the 1.1.4 release to see if it resolves the memory issues you were having. -- Brandon Aaron On 8/6/07, Brandon Aaron [EMAIL PROTECTED] wrote: Nothing yet Michael ... -- Brandon Aaron On 8/6/07, Michael Schwarz [MVP] [EMAIL PROTECTED] wrote: Any news about

[jQuery] Re: IE hover effect

2007-08-24 Thread Brandon Aaron
It doesn't but you can use the jQuery hover helper method to make IE bend to your will. http://jquery.bassistance.de/api-browser/#hoverFunctionFunction -- Brandon Aaron On 8/24/07, Eridius [EMAIL PROTECTED] wrote: Does anyone know if IE support hover effects on divs? -- View this message

[jQuery] Re: [NEWS] More Press for tableSorter

2007-08-24 Thread Brandon Aaron
Dugg! Really nice work Christian. -- Brandon Aaron On 8/24/07, Christian Bach [EMAIL PROTECTED] wrote: Thanks Rey! If anyone would like to help me get the word out even more, please feel free to digg: http://digg.com/programming/jQuery_plugin_Tablesorter_2_0 Best regards Christian

[jQuery] Re: IE hover effect

2007-08-24 Thread Brandon Aaron
Just use the hover method to add a hover class and remove it. $('.myElements').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); }); -- Brandon Aaron On 8/24/07, Eridius [EMAIL PROTECTED] wrote: I don't see how that shows me how to make

[jQuery] Re: IE hover effect

2007-08-24 Thread Brandon Aaron
This is correct. That is why you need to create an actual class like this. div.hover { color: #000; } Then just add the JS that adds the actual hover class. Sorry for this being delivered in bits and pieces. :) -- Brandon Aaron On 8/24/07, Eridius [EMAIL PROTECTED] wrote: but if hover

[jQuery] Re: 1.1.4 update breaks page

2007-08-24 Thread Brandon Aaron
Did you get the latest version of the form plugin? I believe there was an update to make it work with 1.1.4. -- Brandon Aaron On 8/24/07, Matt Kruse [EMAIL PROTECTED] wrote: I haven't dug into the details yet, but I swapped the updated 1.1.4 into my development app and it broke a screen

[jQuery] Re: [NEWS] Brandon Aaron on Ajaxian...AGAIN!

2007-08-23 Thread Brandon Aaron
Thank Klaus. Actually the jQuery architecture lends itself nicely to this plugin so that we don't have to worry about the DOM Mutation events. I think trying to wrap those events and make them cross browser would just add unnecessary complication. -- Brandon Aaron On 8/23/07, Klaus Hartl [EMAIL

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
Time to namespace our expandos. -- Brandon Aaron On 8/23/07, Yehuda Katz [EMAIL PROTECTED] wrote: It looks like Mootools is also using the $events expando, but differently... it expects it to be an object that can have a keys attribute. -- Yehuda On 8/22/07, Sekmet [EMAIL PROTECTED

[jQuery] Re: event-binding

2007-08-23 Thread Brandon Aaron
The plugin has changed to here: http://jquery.com/plugins/project/livequery/ -- Brandon Aaron On 8/23/07, mohsin [EMAIL PROTECTED] wrote: link is down i need that plugin On Jul 14, 6:04 am, Brandon Aaron [EMAIL PROTECTED] wrote: Yay another happy user of behavior! :) -- Brandon

[jQuery] Re: [ANNOUNCE] LavaLamp for jQuery lovers released!

2007-08-23 Thread Brandon Aaron
This is awesome! Great work! -- Brandon Aaron On 8/23/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hi friends, Thank you! both for all your patience and valuable feedback. This sure helped shaped this plugin into whatever it is today. LavaLamp is a very simple menu plugin for jQuery

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
If you are comfortable with modifying the source you could do a find and replace on $events and change it to something like $jqEvents. Just note that some plugins like Copy Events also expects the $events expando ... so you would have to do the same thing for those plugins. -- Brandon Aaron On 8

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
hmm ... wouldn't that still cause problems with the $events expando? -- Brandon Aaron On 8/23/07, John Resig [EMAIL PROTECTED] wrote: Yes, just include Mootools /then/ jQuery. --John On 8/23/07, kj187 [EMAIL PROTECTED] wrote: thx for answer.. is there no quick solution ? i need both

[jQuery] Re: [NEWS] Brandon Aaron on Ajaxian...AGAIN!

2007-08-22 Thread Brandon Aaron
Your way to generous in your description of me! I'm just another web developer trying to make our jobs easier. :p Be sure and hit the 5 stars. :) -- Brandon Aaron On 8/22/07, Rey Bango [EMAIL PROTECTED] wrote: jQuery team member and JS superstar Brandon Aaron is all over the place

[jQuery] Re: livequery issue

2007-08-22 Thread Brandon Aaron
nights_var = $(this); Also, try to be more specific with your Live Queries. Give it a context or just a parent element if you can ... like this: $('#container [EMAIL PROTECTED]') -- Brandon Aaron On 8/22/07, Eridius [EMAIL PROTECTED] wrote: here is a small portion on my code $('[EMAIL

[jQuery] Re: Developing for Opera

2007-08-22 Thread Brandon Aaron
And the Wii... :) -- Brandon Aaron On 8/22/07, John Resig [EMAIL PROTECTED] wrote: Because, unlike IE 5, it's actually pretty easy to get everything to work in Opera - so it's a great +1% market share win. Plus Opera users just won't hush up if you don't support their browser ;-) --John

[jQuery] Re: Dimensions.js 1.1.2 regression?

2007-08-22 Thread Brandon Aaron
GRRR silly browsers and their window widths and heights. Could you send me a test case for this? -- Brandon Aaron On 8/22/07, Will Arp [EMAIL PROTECTED] wrote: I'm seeing a regression from version 1.0b2, $(window).height(); seams to return the document height with Dimensions.js v1.1.2

[jQuery] Re: Karl, cluetip questions: Select IE6 bug ETA, and incorporating JTIP?

2007-08-22 Thread Brandon Aaron
You could always just drop in bgiframe to fix the IE6 select z-index issues. http://jquery.com/plugins/project/bgiframe/ -- Brandon Aaron On 8/22/07, Kim Johnson [EMAIL PROTECTED] wrote: Hi Karl, There are two major reasons why I am using JTip: 1. You had posted a fix for the select issue

[jQuery] Re: [NEWS] Brandon Aaron on Ajaxian...AGAIN!

2007-08-22 Thread Brandon Aaron
Thanks guys! BTW it has shown up on DZone and programing.reddit.com as well. Vote at will! http://www.dzone.com/links/jquery_new_plugin_live_query.html http://programming.reddit.com/info/2hmeh/comments -- Brandon Aaron On 8/22/07, Paul Bakaus [EMAIL PROTECTED] wrote: 5 stars! I already saw

[jQuery] Re: livequery issue

2007-08-22 Thread Brandon Aaron
Aaron On 8/22/07, Eridius [EMAIL PROTECTED] wrote: yes it is using ajax to load the select box. is the issue with safari 3 beta or safari in general? is the issue with ajax related stuff buff all the other jquery stuff is working fine. Brandon Aaron wrote: Safari 3 beta has been

[jQuery] Re: bind/unbind leak

2007-08-22 Thread Brandon Aaron
Would you mind testing with the latest nightlies to see if this issue is fixed in the up coming 1.1.4 release? http://code.jquery.com/jquery-nightly.js http://code.jquery.com/jquery-nightly.pack.js -- Brandon Aaron On 8/22/07, abarton [EMAIL PROTECTED] wrote: The following code when ran

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-21 Thread Brandon Aaron
this: $('.doSomething').livequery('click', doSomething); Then you changed one of the elements by removing the class doSomething, the event would be unbound. -- Brandon Aaron On 8/21/07, Andy Matthews [EMAIL PROTECTED] wrote: What happens though if you want to REMOVE the binding from an object. Using

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Aaron Heimlich
Is it me, or is the DOM method a little bit faster than the CSS one (FF 2.0.0.6 Mac OS 10.4.10 Intel)? I would think that they'd both be the same speed. Having said that, seeing the DOM move all the blocks in unison like that is f'ing awesome! --Aaron On 8/20/07, John Resig [EMAIL PROTECTED

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Brandon Aaron
Yeah I meant formerly. :) Thanks Dylan! -- Brandon Aaron On 8/20/07, Dylan Verheul [EMAIL PROTECTED] wrote: Brandon, this looks very exciting. It may even solve some issues I'm running into in my current project. Question: Live Query (formally Behavior) -- don't you mean formerly

[jQuery] Re: [NEWS] Paul Bakaus on Ajaxian

2007-08-20 Thread Brandon Aaron
Congrats Paul! :) -- Brandon Aaron On 8/20/07, Rey Bango [EMAIL PROTECTED] wrote: jQuery team member and jQuery UI team lead Paul Bakaus got some great press from Ajaxian for his blog posting Advanced ternary conditions in JavaScript. Check it out: http://ajaxian.com/archives/fun

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-20 Thread Aaron Heimlich
On 8/20/07, Mitchell Waite [EMAIL PROTECTED] wrote: Do you have a clue as to why 100% wont work? Put the height: 100% on htmland remove the height from body, it should work then (at least it did for me in FF 2.0.0.6 Win XP). -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http

[jQuery] Re: Cycle Plugin Killing me

2007-08-20 Thread Aaron Heimlich
incredibly simple jQuery program: http://www.whatbird.com/wwwroot/Components/Cycle%20Demo.html Can anyone see what I have missed? Thanks Mitch -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
of wrappers that are absolutely positioned, so you may want to use an explicit value that you know will trigger the vertical scrollbar instead. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-19 Thread Aaron Heimlich
did I until I caught it appearing and disappearing out of the corner of my eye. Thank you for finding that and giving me a solution. No problem, dude. Happy to help. -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-18 Thread Aaron Heimlich
: 797px; } -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: .blur() not doing it's job

2007-08-18 Thread Brandon Aaron
I believe this is fixed in SVN (Revision 2529). While you are waiting for 1.1.4, you can do it this way: $('#tags_clear')[0].blur(); -- Brandon Aaron On 8/18/07, John Resig [EMAIL PROTECTED] wrote: Nope, that should work - do you have a page with this code on it? --John On 8/18/07

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
I've fixed the issue and I'm posting a new release right now. -- Brandon Aaron On 8/15/07, Brandon Aaron [EMAIL PROTECTED] wrote: Ahh thanks Wizzud, I'll dig a little deeper. Thanks. -- Brandon Aaron On 8/15/07, Wizzud [EMAIL PROTECTED] wrote: Brandon, There is actually

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
The new Dimensions 1.1.1 release is up on the project page. http://jquery.com/plugins/project/dimensions/ -- Brandon Aaron On 8/17/07, Brandon Aaron [EMAIL PROTECTED] wrote: I've fixed the issue and I'm posting a new release right now. -- Brandon Aaron On 8/15/07, Brandon Aaron [EMAIL

[jQuery] fadeTo fades up in Safari and FF, down in IE

2007-08-17 Thread Aaron Scott
in at 100% opacity, then fades down to 80%. Has anyone seen this before? What am I doing wrong? Thanks, Aaron

[jQuery] Re: fadeTo fades up in Safari and FF, down in IE

2007-08-17 Thread Aaron Scott
% opacity; I need it to only fade to 80%. Thanks, though. Aaron

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
Release early, release often. So I had a regression in 1.1.1 with Safari and window width and height calculation. I just released 1.1.2 which fixes that and a bug with getting the offset of table cells with borders in mozilla. -- Brandon Aaron On 8/17/07, Brandon Aaron [EMAIL PROTECTED] wrote

<    1   2   3   4   5   6   7   8   >