[jQuery] Re: Binding problems (click/submit)

2007-07-16 Thread Bruce MacKay
Hi Mike, A sample page is here: http://horticulture227.massey.ac.nz/admin/prolearn13.asp?id=1which=2 Click on the [view student list] link (the 'class=gao' link); the [view search options] link which replaces it is unbound - despite my best attempts to re-bind. Thanks, Bruce original

[jQuery] Re: Binding problems (click/submit)

2007-07-16 Thread Mike Alsup
Bruce, You've got a scripting error on your callbacks. ScrollTo is not a defined plugin method (you've used it in multiple places). Did you mean to use scrollTop? Also, to catch errors in async callbacks bind an error handler using ajaxError: $().ajaxError(function(ev, xhr, opts, err){

[jQuery] Re: Binding problems (click/submit)

2007-07-16 Thread Karl Swedberg
ScrollTo is an Interface method. Bruce, are you including Interface in your page? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 16, 2007, at 9:47 AM, Mike Alsup wrote: Bruce, You've got a scripting error on your callbacks. ScrollTo is not a

[jQuery] Re: Binding problems (click/submit)

2007-07-09 Thread Mike Alsup
Bruce, Do you have a sample page we can look at? I don't see anything obviously wrong with the code, but it's hard to tell without seeing more of the page. Mike I'm having difficulty rebinding both a form submit and a click function upon return of an ajax call.