Public Form jQuery error

0

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-&gt;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?

asked Apr 29 '11 at 8:22

chris.pilko

889

edited Apr 29 '11 at 8:26

add comment
enter at least 15 characters

2 Answers

0

Double check which version of jQuery your page is loading.

http://stackoverflow.com/questions/5110261/wordpress-thickbox-integrated-but-not-working

answered May 13 '11 at 7:48

sc0ttkclark

2936

edited May 13 '11 at 7:49

add comment
enter at least 15 characters
0

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.

answered May 13 '11 at 7:59

chris.pilko

889

add comment
enter at least 15 characters