Hi,
This is getting a bit crazy, i have two divs in my page and two slect lists in each div.
in first div the code is working as expected but in second div it's not.i have written fallowing code in both div-
<select onchange="populateStateSelectBox('','ADDR_SHIP_COUNTRY','ADDR_SHIP_STATE');" name="ADDR_SHIP_COUNTRY" id="ADDR_SHIP_COUNTRY" data-native-menu="false" data-theme="c">
<option value="">Country</option>
<option value="zx">'''' </option>
<option value="af">Afghanistan </option>
<option value="hh">Aftab </option>
<option value="ar">Aire </option>
</select>
AS i read this line in jquery docs-**To use custom menus on a specific select, just add the data-native-menu="false" attribute**
i did the same, but it's working in first div but doesn't working in second div..
Any one having any idea why it's happening like that, i am trying to resolve since last 5 hrs, but no luck.. :(
Please some one suggest me where i am wrong
One more thing i would like to add that i am showing first div on page load and second div on a click of a button(Second div is hidden intially)