Basically, I have the same question as this one below:
http://www.mail-archive.com/prototype-scriptaculous@googlegroups.com/msg08682.html
In my case, I get this event observer:
new Form.Element.EventObserver( "selectId", function(element, value) {new Ajax.Updater('divId', '/path/1111', {asynchronous:true, evalScripts:true, onComplete: function(request, json){...}, parameters:'...'});});
I have no former experiences with Prototype framework. Can someone tell me, after changing the value of 'selectId', how can I fire 'onChange' event on <select id='selectId'> control?
I have already tried 'Event.fire()' and 'selectId.onChange()' without any luck.
BTW, I cannot change the source code of that page. I need to write some javascript code in address bar in this format: "javascript: xxx".