Hi,

I'm using jquery 1.2.6 with jquery.form 2.21. Tests were done on
firefox 3.0.5. When posting a file, I was able to track down a
problem (io undefined) to the construction of $io that seems to
be incorrect thus leading to an undefined io variable (line 167):

        var id = 'jqFormIO' + (new Date().getTime());
        var $io = $('<iframe id="' + id + '" name="' + id + '"
src="about:blank" />');
        var io = $io[0];

        // check
        if( $io.attr('id') != id) throw 'bad $io';
        if (!io) throw 'undefined io';

It does not help to write '></iframe>' instead of '/>' nor
to graft the iframe somewhere in the document.

Any idea ?

Reply via email to