Posted by blainegarrett on Dec 3rd, 2008 | View Comments

The last few days at work I have been using the jquery ajaxform plugin extensively. The Malsup docs have been valuable. However, there have been certain things that I have had some issue with. It might be one of those “how do you google for things that do not exist”…
Anyway, today’s hiccup was trying to execute some code when the user hits the cancel button on a form that...
Posted by blainegarrett on Sep 5th, 2007 | View Comments

I wasted a small portion of the last few hours of work today with this issue and the docs everywhere were unclear. So I am going to explain really quick what happened in hopes that others don’t have to waste time with it either.
The correct code is:
var e = document.getElementById('some_element')
e.onchange = some_func
function some_func() { alert('Oh boy have I changed')}
That seems...