tuupola / jquery_chained

Chained Selects for jQuery and Zepto
https://appelsiini.net/projects/chained/
589 stars 283 forks source link

Doesn't work on Internet Explorer 11 #77

Closed danerrich closed 5 years ago

danerrich commented 5 years ago

Hello,

i use this plugin in a Web-Application.

However this works perfectly fine in Firefox and Chrome . But if i try it in IE there are no options in my select-box.

Does any of you have the same problem?

(Sorry if this isn't the right place for this issue. I'm new to GitHub...)

tuupola commented 5 years ago

Must say I have not used IE myself in ages. Maybe there have been some updates which broke this plugin. Can you see any error messages in the console?

danerrich commented 5 years ago

There is just this error on the console in the browser error_chained

(i hope you understand the german parts, otherwise let me know)

tuupola commented 5 years ago

Where is selectRemoteChained defined? It is not part of the plugin code.

danerrich commented 5 years ago

I've downloaded your jquery.chained.js. Then i wrote a simple function to createt the chained select: function selectRemoteChained(id, parent, url, clear = true){ id = "#" + id; parent = "#" + parent; $(id).remoteChained({ parents: parent, url: url, clear: clear }); }

tuupola commented 5 years ago

The remote version is in different file. It is named jquery.chained.remote.js. Maybe that causes the problem.

danerrich commented 5 years ago

i took the remote version, i just renamed it.