[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 class selectors - i.e.
jQuery('.button').doStuff()
-- 
View this message in context: 
http://www.nabble.com/IE6-Performance-Profiling--tf3472905.html#a9691823
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 and console.dir (to dump
objects) within your code to see what's going on inside IE.


Jack Gleeson wrote:
> 
> But in IE the above code does not work, I thought it would be an issue
> with using swfobject with jquery buty I patched that up and the issue
> is still unsolved.
> 
> It's pretty simple code, it hides 4 forms on load and then whatever
> option you select from the select list, it shows the form. It works
> fine in Firefox but in IE when I submit the page and do my regular
> expression checks it shows all forms which is not correct.
> 

-- 
View this message in context: 
http://www.nabble.com/IE-bug-or-bug-in-my-code---tf3432817.html#a9576217
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 render a
> transparent vector image?
> 

-- 
View this message in context: 
http://www.nabble.com/A-few-more-plugins%3A-crop%2C-labelOver-and-pluck-tf3430300.html#a9567911
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 analyser as the template.

Hope that points you in the right direction!
-- 
View this message in context: 
http://www.nabble.com/TableSorter-sorting-date-column-tf3430161.html#a9562824
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[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 
alistapart.com/articles/makingcompactformsmoreaccessible A List Apart 
http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#pluck
pluck  - utility plugin to collect array of attributes


I've provided examples to see how they work - I figured if I was writing
these plugins for work, someone else might have a use for them:


http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/
http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/
 

-- 
View this message in context: 
http://www.nabble.com/A-few-more-plugins%3A-crop%2C-labelOver-and-pluck-tf3430300.html#a9562667
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 anchor point to the actual URL to change the rating).

The original plugin expected the following type of HTML:

"/blah.php?id=xyz#2 2 stars 

and it *was* reading the hash value - with the .split('#')[1].  However,
you've changed the plugin to read .split('#')[0] - taking everything on the
left and breaking the actual info that is submitted.

I would recommend adding the hashed value back in to your page (i.e.
appending the #$RATING to all the image URLs) and changing the code back to
read .split('#')[1] (don't forget this happens in two places).

Hope that helps.

Remy.


Jonathan Chong wrote:
> 
> Hey everyone
> 
> I'm having problems with the star rating plugin written by Ritesh
> Agrawal. I've tried contacting him but he hasn't yet replied to my
> email, so I'm hoping someone on the list can help out.
> 
> What is also odd is that it was working before, but isn't now. Here's
> the link to the plugin I'm using:
> http://php.scripts.psu.edu/rja171/widgets/rating.php
> 
> The reason why I'm using this star rating plugin, and not the original
> one, is that this one allows me to implement a one star / unstar
> system like Gmail. Here's a sample page where I'm using the plugin:
> 
> http://arsenal-mania.com/news/3103818/Gilberto-rumours-squashed.html
> 
> When you click on a star, it is meant to go off to a URL and submit
> the post. If I copy and paste the URL it's meant to go off to into the
> browser's address bar, it works, so there is nothing wrong with the
> script that does that, just the plugin not directing to the required
> URL.
> 
> Would appreciate it greatly if any of the jquery gurus on this list
> could help, and I will provide as much relevant information as I can.
> 
> Thanks again.
> 
> -- 
> Jonathan Chong
> 
> http://jonathanchong.com/
> http://arsenal-mania.com/
> http://ashburrn.com/
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-Star-Rating-plugin-tf3421681.html#a9543932
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 on that screencast, Remy!
> 
> Since you end the cast with a note about putting the script into a
> plugin I would just like to point out that gathering form data is a
> bit more complex when dealing with meatier forms.  Your code works
> fine for a form that contains only text fields, but it would not work
> for a form that contained a checkbox, radio button or multi-select
> element.  In addition, encodeURIComponent should be used instead of
> escape (and it should be used on both the name and value).
> 
> I realize your demo was about how easy it is to ajaxify a form, and
> you did an awesome job demonstrating that.  I just wanted to follow up
> with some additional info.
> 
> Cheers!
> 
> Mike
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Screencast%3A-how-to-easily-use-AJAX-to-submit-a-form-using-jQuery-tf3356310.html#a9338189
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[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: 
http://www.nabble.com/Screencast%3A-how-to-easily-use-AJAX-to-submit-a-form-using-jQuery-tf3356310.html#a9334547
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 context: 
http://www.nabble.com/Beginner%27s-Tutorial%3A-AJAX-%2B-select-boxes-tf3046473.html#a8468634
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[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 be appreciated.

Thanks,

Remy.
-- 
View this message in context: 
http://www.nabble.com/Beginner%27s-Tutorial%3A-AJAX-%2B-select-boxes-tf3046473.html#a8468088
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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 19):
> $(this).href() has no properties
> (no name)(20)pip_ticker.html (line 19)
> (no name)()mousehold.js (line 33)
> var hrefPip = parseFloat($(this).href().match(/spin=([\-0-9\.]+)/)[1])
> 
> -ALEX
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7940632
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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
>> released another duplicate window opens (tested in FF)
>>
> 
> This happens in IE7 too (and probably IE6 as well). Middle-clicking
> doesn't
> seem to trigger a "click" event, only "mouseup" and "mousedown"
> 
> -- 
> Aaron Heimlich
> Web Developer
> [EMAIL PROTECTED]
> http://aheimlich.freepgs.com
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7906351
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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:
> 
> Webunity | Gilles van den Hoven schrieb:
>> Andy Matthews wrote:
>>   
>>> This would be a perfect thing to meld in with that form scroller plugin.
>>> Can't recall who wrote it, but it converted a form field into a widget
>>> that
>>> let you click up and down to change values.
>>>   
>>> 
>> And is there a feature which counts how many events are fired?
>> I am thinking of an implementation where you first get increments of 1, 
>> then 2, then 4, then 8 (the longer you hold your mouse down)
>>   
> That's a great idea that could improve this nice plugin even more.
> 
> I added it to the plugins page, please review the description: 
> http://jquery.com/docs/Plugins/ (at the bottom)
> 
> -- 
> Jörn Zaefferer
> 
> http://bassistance.de
> 
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7906343
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp

That's exactly why I wrote it (though not for that plugin) - I've been
working on a 'spinner' that's closer to desktop application spinners for the
web - converting select boxes to this new object...but you're right - it
does fit quite well together.



Andy Matthews wrote:
> 
> This would be a perfect thing to meld in with that form scroller plugin.
> Can't recall who wrote it, but it converted a form field into a widget
> that
> let you click up and down to change values.
> 
>  andy matthews
> web developer
> certified advanced coldfusion programmer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Behalf Of John Resig
> Sent: Friday, December 15, 2006 1:54 PM
> To: jQuery Discussion.
> Subject: Re: [jQuery] Plugin: Mousehold
> 
> 
> This is a fantastic plugin!
> 
> The only suggestion that I have is to reverse the order of the arguments:
> $(...).mousehold( 100, function(){ ... } );
> 
> and make the timeout argument optional. That way you can still write:
> $(...).mousehold( function(){ ... } );
> 
> This makes 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:
>>
>> I've written a simple plugin that keeps firing the specified function
> while
>> the mouse button is held down (i.e. a repeat action).
>>
>> Here it is:
>>
>> http://leftlogic.com/jquery/mousehold.js
>>
>> Here's a bit more detail on how it works - along with an example:
>>
>> http://remysharp.com/2006/12/15/jquery-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 list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7898530
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp

Cheers for the feedback.

I've quickly swapped over the args and changed the default 1/10th of second
(you're right, once a second is pretty useless!)

I've also tweaked mouse down tracking as suggested by Erik to use a global
flag - otherwise you can some crazy events firing!

Thanks again.


John Resig wrote:
> 
> This is a fantastic plugin!
> 
> The only suggestion that I have is to reverse the order of the arguments:
> $(...).mousehold( 100, function(){ ... } );
> 
> and make the timeout argument optional. That way you can still write:
> $(...).mousehold( function(){ ... } );
> 
> This makes 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:
>>
>> I've written a simple plugin that keeps firing the specified function
>> while
>> the mouse button is held down (i.e. a repeat action).
>>
>> Here it is:
>>
>> http://leftlogic.com/jquery/mousehold.js
>>
>> Here's a bit more detail on how it works - along with an example:
>>
>> http://remysharp.com/2006/12/15/jquery-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 list
>> discuss@jquery.com
>> http://jquery.com/discuss/
>>
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Plugin%3A-Mousehold-tf2828870.html#a7898405
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Plugin: Mousehold

2006-12-15 Thread Remy Sharp

I've written a simple plugin that keeps firing the specified function while
the mouse button is held down (i.e. a repeat action).

Here it is:

http://leftlogic.com/jquery/mousehold.js

Here's a bit more detail on how it works - along with an example:

http://remysharp.com/2006/12/15/jquery-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 list
discuss@jquery.com
http://jquery.com/discuss/


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: 
$(whatever).hightlightFade(color,duration,complete,iterator);

$(whatever).highlightFade({color:whatever,duration:whatever,complete:whatever,iterator:whatever});
Description:
This plugin allows for simple "yellow fade" technique which was
popularized
by 37signals.com but this can highlight in any colour. It 
always fades to 
the current background of the element but if the need for 
specifying the 
final colour is requested I'll consider adding it (or you could 
do it
yourself :)).
Arguments:
color: Defines the color at which to begin fading
- a w3c css compatable color code (ie rgb(1,2,3), #ccc, 
#ed3e23)
  or a w3c spec color name (ie blue, red, gray, et. al.)
- Default value: rgb(250,250,200)
duration: Defines the speed at which the color fades away
- a jQuery speed string (ie slow, fast) or a duration 
in milliseconds
- Default value: default value of jQuery's $.speed 
function
complete: Defines a function to call once the colour fade has 
finished
- Can be anything you want it to be. You can access the 
element on which
  the fade was applied via the this variable.
- Default value: no action
iterator: Defines the method by which we move from the starting 
color to
the final.
- Can be a string representing one of the built in 
fading algorithms (ie
'linear',
  'sinusoidal', or 'exponential') or a custom function 
of your design.
The custom
  function must take as it's arguments the start value, 
the final value,
the total 
  number of steps and the current step.
- Linear is an even colour progression, Sinusoidal 
changes in the
beginning fast but 
  slows as it approaches disappearing, Exponential 
changes slowly in the
beginning
  but increases its colour change per step as time goes 
on.
- Default value: linear
Notes: 
- Any arguments can be set to the default by setting them as 
null in the
function call
- Any arguments not specified in the Object notation are also 
taken as the
default value
Examples:
- Do a red exponential highlightFade on all p elements on the 
page at a
crawl speed
  $('p').highlightFade({color'red','crawl',null,'exponential')
- Do a bluish sinusoidal highlightFade on all div's with a 
class of 'new'
and remove it afterwards
  $('div.new').highlightFade('rgb(128,128,255)',null,function() 
{
$(this).remove() },'sinusoidal');
- Just do a plain old linear yellow fade on 'this'
  $(this).highlightFade();
*/

$.fn.highlightFade = function(colour,settings) {
if (typeof settings != 'object') settings = {
color: arguments[0], 
speed: arguments[1], 
complete: arguments[2], 
iterator: arguments[3]
};
if (typeof colour != 'object' || (colour && colour.constructor == 
Array))
settings['color'] = colour;
else settings = colour;
var o = settings;
var ts = {
'linear': function(s,e,t,c) { return parseInt(s+(c/t)*(e-s)); },
'sinusoidal': function(s,e,t,c) { return
parseInt(s+Math.sin(((c/t)*90)*(Math.PI/180))*(e-s)); },
'exponential': function(s,e,t,c) { return
parseInt(s+(Math.pow(c/t,2))*(e-s)); }
};
var t = (o['iterator'] && o['iterator'].constructor == Function) ?
o['iterator'] : ts[o['iterator']] || ts['linear'];
return this.each(function() {
var i = 50;
var e = (this.highlighting) ? this.highlighting.end :
$.highlightFade.getBGColor(this) || [255,255,255];
var c = $.highlightFade.getRGB(o['color'] || [255,255,128]);
var s = $.speed(o['speed'],o['complete']);
var r = (this.highlighting && this.highlighting.orig) ?
this.highlighting.orig : $.curCSS(this,'backgroundColor');
if (this.highlighting && this.highlighting.timer)
window.clearInterval(this.highlighting.timer);
this.highlighting = { steps: ((s.duration) / i), interval: i, 
currentStep:
0, start: c, end: e, orig: r };
$.highlightFade(this,s.complete,t);
});
};

$.highlightFade = function(e,o,t) {
  

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

2006-11-29 Thread Remy Sharp

Hmm...looks like I may have re-invented a little bit of the wheel!

I guess the differences are mine can be controlled through CSS and the
min-width setting (not sure if this was supposed to word in the expander
example - but it didn't work in Safari).

Cheers for pointing it out though!


Erik 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 in the tag search on del.icio.us.
>>
>> http://leftlogic.com/info/articles/auto_grow_text
>>
>> It can read CSS styling to control the min and max width of the input
>> box.
>>
>> Let me know what you think, or if you spot any bugs.
>>
>> 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://jquery.com/discuss/
>>
> 
> ___
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/New-plugin%3A-del.icio.us-like-text-grow-tf2717821.html#a7598770
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


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

2006-11-28 Thread Remy Sharp

Hi,

I've written a plugin that matches the automatic text box growth
functionality in the tag search on del.icio.us.

http://leftlogic.com/info/articles/auto_grow_text

It can read CSS styling to control the min and max width of the input box.

Let me know what you think, or if you spot any bugs.

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://jquery.com/discuss/


[jQuery] Microformats Bookmarklet using jQuery

2006-10-08 Thread Remy Sharp
Not sure if this had been posted already, but I thought this might  
interest a few people following the post on jQuery and bookmarklets.

I wrote a bookmarklet that uses jQuery to navigate the HTML for  
microformats (http://microformats.org).

http://leftlogic.com/info/articles/microformats_bookmarklet

It doesn't really explain the inner workings, but feel free to have a  
peruse over the source code.

Comments, suggestions, bugs, etc. all welcome.

Thanks,

Remy Sharp.

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Upgraded Plugin: Spy

2006-09-30 Thread Remy Sharp
Hi,

I've written a significant upgrade to my jQuery plugin that creates  
similar functionality to the Digg spy (http://digg.com/spy).

Examples and documentation:

http://leftlogic.com/info/articles/jquery_spy2

Source:

http://leftlogic.com/jquery_spy/spy.js

I've addressed some of the feedback on this site and from comments on  
my own site, but most importantly, I've changed the code to support  
multiple items being returned from the AJAX request rather than  
hitting the server once for each item.

Will be grateful for any feedback.

Thanks,

Remy Sharp


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] New Plugin: Spy

2006-08-14 Thread Remy Sharp
Hi,

I've written a jQuery plugin that creates similar functionality to  
the Digg spy (http://digg.com/spy).

Examples and documentation:

http://leftlogic.com/info/articles/jquery_spy

Source:

http://leftlogic.com/jquery_spy/spy.js

Will be grateful for any feedback.

Thanks,

Remy Sharp


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/