i did what you said.app.js is solved but now i think the problem is with the basics.js. i applied the same procedure to basics.js file but it didnt work.
Main Topics
Browse All Topicshi in this web page i mount in a ajax aplication
www.dizifilmseyret.com
you can see it in the sidebar. right hand side of the page. when first combobox is selected the second combobox is being updated. it works good in firefox.there is no problem.but in ie it says that "cotoci is undefined". i worked on it but i couldnt resolve the problem. what is the problem? thank you very much. i am not good at javascript.files that are related with this problem
<script type="text/javascript" src="app.js?v=0.1" ></script>
<script type="text/javascript" src="basics.js?v=0.5"></sc
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
No, I dont see.
It seem works now as far as I wait until the second list was changed, but if I scroll the first list fast I get script error at this line in app.js
scr = function(){
var r = scr.arguments[0].responseX
...
You may improve it to this
scr = function(){
if(!scr.arguments[0]) return;
var r = scr.arguments[0].responseX
...
Business Accounts
Answer for Membership
by: gnoonPosted on 2008-02-09 at 19:33:06ID: 20859938
It's related with file encoding. You're using unicode character within app.js by following line
ci.options[0] = new Option("Þehir bulunamadý.");
but it may not be saved in proper encoding.
Try to open the file with notepad and save as UTF-8 encoding, or change the message to ANSI characters, or specify a proper charset attribute at the script element.