Re: [jQuery] interface imagebox

2007-02-22 Thread Brent Pedersen
thanks, i have looked at that one. and i have dug into the code some. doing what you suggest _seems_ fine, but then, you get to the last image and it keeps triggering click. also, instead of fading from 1 image to the next it shows the loading gif in between. and in that slideshow, i think the load

[jQuery] interface imagebox

2007-02-22 Thread Brent Pedersen
hi, has anyone modified the interface imageBox to do slideshows? or are there any other _modal_ image plugins out there that will do slideshows where you press play and it loads images sequentially after a timeout?-- in addition to having the next and previous buttons? thanks. -brent _

Re: [jQuery] logic help

2006-12-20 Thread Brent Pedersen
that's a good algorithmic problem, and not a trivial one: http://en.wikipedia.org/wiki/Convex_hull but if you draw the polygon based on the order in which the points were clicked, (assuming the user will automatically generate a convex polygon) then it will be a lot simpler. On 12/20/06, bmste

Re: [jQuery] jQuery 1.0.3 compressed - file header missing

2006-11-02 Thread Brent Pedersen
$().jquerygives the version. On 11/2/06, Laurent Yaish <[EMAIL PROTECTED]> wrote: The packed version of jQuery 1.0.3 is missing the file header, 1.0.2 had it. I know it makes the file slightly smaller but then there is no way to know what version you're using. Thanks!Laurent __

Re: [jQuery] jquery update causes js error

2006-10-09 Thread Brent Pedersen
it looks like mscross had objRef to maintain the scope he wanted. (though he didn't need to extend Object.prototype). in jquery when you attach an event, "this" in a callback refers to the html element that was clicked or mouseover-ed etc. in his lib, he is saving a reference to an html element in

Re: [jQuery] jquery update causes js error

2006-10-08 Thread Brent Pedersen
hi stephen,i'd guess the offending line is in mscross: Object.prototype.objRef = null;handle event has changed from using a i=0;ii'd guess that the extra iterable (objRef) is causing problems in the newer handle event. hope that helps. (and hi from a fellow Mapserver/GIS user)-brentOn 10/8/06, Step