I have the following code that loads element from a remote page (under same domain) into the current page. The element #Beijing contains a dropdown menu, and I wish to add some value into the menu in select syntax after it is loaded. The value I would like to add is:
onChange="this.form['CAT_Custom_221342'].value=this[this.selectedIndex].value"
and here is the code I've got, please help me to edit it furthur, thank you.
function StateBeijingNext() {
$('#SuburbSelect').load('/Country/CN/_CN_suburbs.html #Beijing');
}
#Beijingactually the<select>element?