change data-theme dynamically
Hi,
I am trying to change te dialog theme using below code but it is not changing... why?
here is my div:
- <div id="dialogAlert" data-role="popup" data-overlay-theme="b" data-theme="b" data-dismissible="false" style="max-width: 400px;">
- <div data-role="header"><h1 id="msgTitle">Error!</h1></div>
- <div role="main" class="ui-content">
- <p id="msgAlert"></p>
- <a href="#" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b" data-rel="back">Close</a>
- </div>
- </div>
and this is my jquery:
- var msg_dialog = document.getElementById('dialogAlert');
- msg_dialog.setAttribute('data-theme', 'a');
-
- $('#msgAlert').html("Please enter all required fields!");
Thanks,