Displaying 3 results from an estimated 3 matches for "justinperkin".
Did you mean:
justinperkins
2008 Jan 28
6
cancelling form submit
Anyone know why my form would still submit in firefox but not in IE?
aspnetForm is the id of the form.
I get the alert, but the form still submits.
Event.observe(''aspnetForm'',''submit'',function(e){
alert(''submit'');
var t = $F(''ctl00_ContentPlaceHolder1_NewTag'');
2008 Feb 05
2
Catching Ajax Failures (not 500s)
I am trying to catch failed Ajax requests, but I''m talking about
requests that receive no response from the server (server is down),
not responses that result in a 500.
The latter can be handled with the onException or onFailure callback,
but I am not able to handle the former.
To reproduce/test:
1) Start your server
2) Create a page that does this:
2007 Apr 17
5
Problem with toQueryParams()
I''m sure this has been covered before, but here goes...
Anybody noticing some odd behavior with submitting forms through
Ajax.Request? I thought at first it was a problem with Form.serialize,
but was able to trace it back to line #975 (in prototype 1.5.1_rc2)
which calls "toQueryParams" on the parameters that are passed into the
new Ajax object if it is a string. This is the