[jQuery] IE6 Performance Profiling?

2007-03-27 Thread Remy Sharp
Does anyone know how and with what I can performance profile in IE6? Firefox and IE7 are fine, it's just IE6 takes well over 10 seconds to load a heavily jQuery'ed page, and I need to dig around and find where the performance bottlenecks are. Obvious things I'm starting with is removing any

Re: [jQuery] A few more plugins: crop, labelOver and pluck

2007-03-20 Thread Remy Sharp
I've not used VML before, I'll have a read around and see if I can do it - it's certainly a lot better if you don't have to pass in the image. Yansky wrote: Regarding the IE glitch and the need to include a transparent gif rather than creating it on the fly; could you maybe use VML to

Re: [jQuery] IE bug or bug in my code ?

2007-03-20 Thread Remy Sharp
Hi Jack, Occasionally I get the oddity of JavaScript not working in IE too, so I recently converted the http://remysharp.com/2007/03/13/firebug-in-ie-for-any-web-site/ Firebug lite to a bookmarklet so you can easily debug what's going on any page. I would recommend adding a few console.info

[jQuery] A few more plugins: crop, labelOver and pluck

2007-03-19 Thread Remy Sharp
http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#crop crop - crops an image on the fly http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#labelOver labelOver - the accessible way of compacting forms (ala

Re: [jQuery] TableSorter sorting date column

2007-03-19 Thread Remy Sharp
Chris W. Parker wrote: How can I get it to still sort properly while just using the date portion (e.g. Jan 01, 2000)? If I were you I would write another analyser - to match your date format, then manually add 00:00:00 before converting the time to a numerical. Use the existing date

Re: [jQuery] Problem with Star Rating plugin

2007-03-18 Thread Remy Sharp
Hi, The implementation is wrong, and it also looks like you've tweaked the plugin code - which is a double hit for it not working. In particular, the plugin is based on a 'less accessible' implementation, and you've tried to (correctly) make it work when JS is turned off (i.e. by having the

Re: [jQuery] Screencast: how to easily use AJAX to submit a form using jQuery

2007-03-07 Thread Remy Sharp
Oops - yep - obviously this.value won't work on checkboxes, etc. Good point - cheers! malsup wrote: On 3/6/07, Remy Sharp [EMAIL PROTECTED] wrote: A screencast for beginners to jQuery and/or AJAX showing how easy it is to add an AJAX layer to submit a form. Excellent job

[jQuery] Screencast: how to easily use AJAX to submit a form using jQuery

2007-03-06 Thread Remy Sharp
A screencast for beginners to jQuery and/or AJAX showing how easy it is to add an AJAX layer to submit a form. http://remysharp.com/2007/03/05/jquery-ajaxed-forms/ I wasn't sure whether just to add it to the tutorials wiki on jquery.com or not... -- View this message in context:

[jQuery] Beginner's Tutorial: AJAX + select boxes

2007-01-20 Thread Remy Sharp
Hi there, I've written a tutorial for people that are new to jQuery and want to see an (just one) example of how jQuery can simplify code. The tutorial also includes quick bits on AJAX and JSON. http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/ Any feedback would

Re: [jQuery] Beginner's Tutorial: AJAX + select boxes

2007-01-20 Thread Remy Sharp
Cheers - I've updated it avoid any confusion. Ⓙⓐⓚⓔ wrote: quite well written (english and jq)! I would suggest changing the names of the id name variables to optionValue optionDisplay. So the names are not confuse with id name attributes in form elements. -- View this message in

Re: [jQuery] Plugin: Mousehold

2006-12-18 Thread Remy Sharp
Sorry - fixed that. Hack to hack the demo for my line manager, he wasn't interest in the jQuery plugin sadly :-( Should be working now. Alex Cook wrote: I'm coming into this one late, so if this has been mentioned I apologize... In FF2.0/Win I get an error: pip_ticker.html (line

Re: [jQuery] Plugin: Mousehold

2006-12-16 Thread Remy Sharp
I've updated the plugin to pass the repeat counter in to the given function, so anyone using the mousehold plugin could do something like: $('img.spinner').mousehold(100, function(i) { speed = Math.pow(100, i); doMyStuff(speed); } Thanks for all the feedback. Jörn Zaefferer wrote:

Re: [jQuery] Plugin: Mousehold

2006-12-16 Thread Remy Sharp
I'll have a look in to what I can do about this problem when I get a chance to work on a PC next week (sorry - a Mac boy). Thanks, Remy. AHeimlich wrote: On 12/15/06, Giuliano Marcangelo [EMAIL PROTECTED] wrote: Using the mousewheel also fires the event,but when the mousewheel is

Re: [jQuery] highlightFade's source code missing...

2006-12-15 Thread Remy Sharp
/* jQuery Plugin highlightFade (jquery.offput.ca/highlightFade) (c) 2006 Blair Mitchelmore (offput.ca) [EMAIL PROTECTED] */ /* (The inline documentation has returned until I can publish it on a page) Usage:

[jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp
-mousehold-event/ Any feedback or bugs please let me know. Cheers, Remy Sharp. -- View this message in context: http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7897334 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing

Re: [jQuery] highlightFade's source code missing...

2006-12-15 Thread Remy Sharp
No problem - it's a great little plugin. aedmonds wrote: Thanks Remy... I love the jQuery community! -- View this message in context: http://www.nabble.com/highlightFade%27s-source-code-missing...-tf2828595.html#a7897553 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp
it more consistent with the style of other jQuery methods (having the callback always be last!) Also, it may make sense to have the default timeout be something like '100' - as a timeout of 1 second seems to be kind of useless (IMO). --John On 12/15/06, Remy Sharp [EMAIL PROTECTED] wrote

Re: [jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp
methods (having the callback always be last!) Also, it may make sense to have the default timeout be something like '100' - as a timeout of 1 second seems to be kind of useless (IMO). --John On 12/15/06, Remy Sharp [EMAIL PROTECTED] wrote: I've written a simple plugin that keeps firing

Re: [jQuery] New plugin: del.icio.us like text grow

2006-11-29 Thread Remy Sharp
Beeson wrote: This looks really nice, but how is it different from the one in Interface? http://interface.eyecon.ro/demos/expander.html --Erik On 11/28/06, Remy Sharp [EMAIL PROTECTED] wrote: Hi, I've written a plugin that matches the automatic text box growth functionality

[jQuery] New plugin: del.icio.us like text grow

2006-11-28 Thread Remy Sharp
. Thanks, Remy Sharp. -- View this message in context: http://www.nabble.com/New-plugin%3A-del.icio.us-like-text-grow-tf2717821.html#a7577611 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http