[jQuery] Re: New plugin: simplyScroll

2009-02-19 Thread Will Kelly
Have added a new complex markup example http://logicbox.net/jquery/simplyscroll/custom.html On Feb 19, 1:13 am, Will Kelly wrote: > Great stuff, let me know how it goes! Will > > On Feb 18, 11:06 pm, Daniel wrote: > > > Wonderful! I plan to use this

[jQuery] Re: New plugin: simplyScroll

2009-02-18 Thread Will Kelly
Great stuff, let me know how it goes! Will On Feb 18, 11:06 pm, Daniel wrote: > Wonderful! I plan to use this on the redesign of > hodgesfarmequipment.com! Thank you, bookmarked! > > On Feb 18, 2:41 pm, Will Kelly wrote: > > > Hi > > > Just released a plugin for

[jQuery] [ANN] New plugin: simplyScroll

2009-02-18 Thread Will Kelly
Hi Just released a plugin for some code I've been working on and off for the past few months. It's a simple content scroller that can accept images as well as more complex content and features an 'infinite' scroll mode as well as image data from Flickr. Plug-in: http://logicbox.net/jquery/simpl

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-18 Thread Will Kelly
using ctrl-shift-r. > > On 7/17/07, Will Kelly <[EMAIL PROTECTED]> wrote: > > > > > Screenshot from FF2 here > >http://www.logicbox.net/jquery/pricetable/screen.jpg > > > On Jul 17, 2:15 pm, "Benjamin Sterling" > > <[EMAIL PROTECTED]&g

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
Screenshot from FF2 here http://www.logicbox.net/jquery/pricetable/screen.jpg On Jul 17, 2:15 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > I second Erik on this, can you elaborate on your issue? Maybe send a screen > shot of what you are getting?

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2 [windows bug?]

2007-07-17 Thread Will Kelly
is a small 1px white line > between the column headers in FF that isn't in Safari, but it isn't > bad, and is probably the result of a rendering difference between the > browsers, not a jQuery issue. > > --Erik > > On 7/16/07, Will Kelly <[EMAIL PROTECTED]&

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
loser inspection, there is a small 1px white line > between the column headers in FF that isn't in Safari, but it isn't > bad, and is probably the result of a rendering difference between the > browsers, not a jQuery issue. > > --Erik > > On 7/16/07, Will Kelly <[EM

[jQuery] Re: Complex(ish) table formatting code not working in Firefox 2

2007-07-17 Thread Will Kelly
r:last td, tbody tr:last th",this).addClass('js-btd'); }); }; })(jQuery); $(function() { $("table.prices").priceTable(); }); On Jul 16, 1:37 pm, Will Kelly <[EMAIL PROTECTED]> wrote: > Hi, > > Not sure if this is a bug or not, b

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Will Kelly
This might be of interest. A php implementation for caching and combining js/css files http://www.ejeliot.com/blog/73

[jQuery] Complex(ish) table formatting code not working in Firefox 2

2007-07-16 Thread Will Kelly
Hi, Not sure if this is a bug or not, but Firefox seems not to properly apply a series of class names. Here's the example http://www.logicbox.net/jquery/pricetable/short-css.html with a 'console.log' to fix the firefox rendering. http://www.logicbox.net/jquery/pricetable/short-css-firefox-fix.h

[jQuery] Re: Best practice for image source change

2007-04-05 Thread Will Kelly
I wrap each thumbnail with a link: This is the amateurish jQuery code I've conjured up: $("a#tnLink01").click(function() { $("#mainImage").attr({src:"another_large_image.jpg"}); }); I'll need one of these functions for every thumbnail and that seems wrong somehow, so I'd really appreciat