Public Form jQuery error
I'm seeing an error with the publicForm function:
When I load my page with the form, I am seeing an error generated on the rendered code from line 20 of input_form.php:
jQuery(".file .btn.dropme").live("click", function() {
* Error Uncaught TypeError: Object #<Object> has no method 'live' *
This is having the extra result that when I click the "Save Form" button, I'm getting an "Uncaught ReferenceError: elements is not defined" at line 46.
As for my form, I've got a simple array of 28 text, number and pick fields on the form. I'm not using any input helpers, labels or thank you URLs. I'm calling this with a simple echo $Record->publicForm($fields);
I'm running WP 3.1.2, Pods 1.9.5.1 and doing my testing in Chrome v10.0.648.204
Anyone have any thoughts on this one?
edited Apr 29 '11 at 8:26
2 Answers
Double check which version of jQuery your page is loading.
http://stackoverflow.com/questions/5110261/wordpress-thickbox-integrated-but-not-working
edited May 13 '11 at 7:49
Sure enough, my theme was loading jQuery 1.2 after the call that loaded 1.4. I commented it out and it works like a champ. Thanks sc0tt.


