I am having some trouble with ajaxform - it does not see to fire. in the ajaxForm code below, the alert never shows up.
I have added an iframe (my_frame) via a bookmarklet. That shows up fine. I want to do some stuff when the form is submitted. getScript succeeds (the form loaded alert is displayed). But the function never gets triggered. What might I be missing?
jQuery.getScript("http://localhost:81/p/a2b/jquery.form.js", function () {
alert ("form loaded");
jQuery('my_frame#my_cart').ajaxForm(function() { alert ('yo!'); });
});