Message: Object doesn't support this property or method
Line: 151
Char: 3
Code: 0
URI: http://showcase.robophreddev.net/sites/all/modules/nodereference_explore...

Occures when I click a "browse" button.
Field is noderef restricted to one content type, unlimited values.

Comments

RoboPhred’s picture

This error also shows up when editing the node reference field settings, presumably because its included for the default value selection.

shshme’s picture

You may also want to read the following post:
Object doesn't support this property or method

gnindl’s picture

Version: 6.x-1.1-beta1 » 6.x-1.1-beta2

I encounted similar problems when usind jquery_update. Try jquery_ui version 1.3 which doesn't need jquery_update any more.

gnindl’s picture

Status: Active » Closed (duplicate)

Suppose this is a duplicate:
http://drupal.org/node/516162

shijobaby’s picture

typsy’s picture

Hi!

I just wrote an unique ID for the entry where the ajax call was called from..

E.g. in my case I had

<input id="remove" type="button" onclick="remove('#table0');" value="Remove" name="remove" />

and it didn't work.

But when writing this:

<input id="removetable0" type="button" onclick="remove('#table0');" value="Remove" name="removetable0" />

it worked just fine on IE.

Cheers!