Got the this function which, to make it short, enables and populates the next drop down list (it calls another jQuery function, but won't post it for now). It works perfectly. Now I'm trying to pass default values and have it enable and populate the following drop downs without actually clicking on anything.
The function that currently works:
$(function() {
$(document).on('change', '.update', function() {
formObject.run($(this));
});
});
Here, the 'change' event was used because when the page loads, all lists but the first one are disabled, so a change (Selection of any item) in the first list will enable the second list, a later selection in the second list will enable the third list an so on. formObjet is a variable which contains a function 'run' that does all the 'dirty job'.
Now, I read (been browsing for hours!) that you could call the change event or the trigger handler to mimmic such selection, but none has worked so far:
$('select[name="princ"]').change(); // DOES NOT WORK
$('select[name="princ"]').trigger('change'); // DOES NOT WORK EITHER
I have placed this code snipped before the function, after, but nothing seems to work. BTW, 'princ' is the first dropdown, which is populated when the page loads (does no depend on javascript to be filled, simply php and mysql)
Any suggestions?
.updateand in the other[name="princ"]. This simple example of what you're doing seems to work OK for me: jsfiddle.net/95ZnS (tested: Opera, Chrome) – Utkanos Jul 5 '12 at 22:27