jQuery mobile custom select menu not working when url has encoded parameters -


i have jquery mobile 1.4.5 custom select menu on page. if url has encoded parameters url gets appended id of menu , menu click event not show option menu popup.

let me know solution please.

not working when url below

submitsecureform.aspx?encdata=jalt6qgrlgk%3d 

working when url below

submitsecureform.aspx?encdata=jalt6qgrlgk= 

below how control looks

<div class="ui-select"> <a href="#" role="button" id="ddl_institutionaccountnumber-button" aria-haspopup="true" class="ui-btn ui-icon-carat-d ui-btn-icon-right ui-corner-all ui-shadow"><span>[select one]</span></a> <select id="ddl_institutionaccountnumber" name="institutionaccountnumber" tabindex="-1"> <option value="0">[select one]</option> <option value="123456">val1</option> <option value="123457">val12</option> <option value="535331">val13</option> <option value="378364">val14</option> </select> <div style="display: none;" id="ddl_institutionaccountnumber-listbox-placeholder"><!-- placeholder ddl_institutionaccountnumber-listbox --></div> </div> 

on click of menu, url gets appended #id below

submitsecureform.aspx?encdata=jalt6qgrlgk%3d#ddl_institutionaccountnumber-listbox 

and option popup not show.

i'm testing in chrome browser mobile mode.

thanks.


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -