Hi folks,
I basically customized
http://www.blog.valenticabd.com/tag/javascript
custom combo box code.
Everything works great in I.E.
When the following initliazed function is called
I perform a ajax call to a php page to grab menu items from a database.
// Initialize the Month Combo var monthCombo = function (name) { this.Name = name; var xht = getHttpRequest(); xht.open("POST", 'plugins/monthcombo/getMenuItems.php', true); xht.setRequestHeader('Content-type','application/x-www-form-urlencoded'); xht.onreadystatechange = callback_myPages; var objStr = ""; xht.send(objStr); }
Re: FCKToolbarSpecialCombo AJAX call not working in FF
That isn't really a question about FCKeditor, you should create a simple testcase (just the request without anything else) and ask this in a forum dedicated to Firefox like http://forums.mozillazine.org/viewforum ... =d&start=0