[jQuery] datePicker plugin - inputClick bug fix and other alterations

2006-11-27 Thread Sam Collett
I've made a few changes to the Kelvin Luck's date picker plugin (http://kelvinluck.com/assets/jquery/datePicker/). After adding the ability to click the input to show the calendar it replaces any existing css classes that may already exist on it (which I should have caught when adding it). So I

Re: [jQuery] datePicker plugin - inputClick bug fix and other alterations

2006-11-27 Thread Brandon Aaron
On 11/27/06, Sam Collett [EMAIL PROTECTED] wrote: Along with that, I have reduced the number of times 'attr' is used: i.e. $(a).attr({'title' : 'Foo', 'rel' : 'myrel', 'href' : 'javascript:;'}) becomes: $(a).title('Foo').rel('myrel').href('javascript:;') I'm curious why you have done

Re: [jQuery] datePicker plugin - inputClick bug fix and other alterations

2006-11-27 Thread Sam Collett
On 27/11/06, Brandon Aaron [EMAIL PROTECTED] wrote: On 11/27/06, Sam Collett [EMAIL PROTECTED] wrote: Along with that, I have reduced the number of times 'attr' is used: i.e. $(a).attr({'title' : 'Foo', 'rel' : 'myrel', 'href' : 'javascript:;'}) becomes: