Change listview theme on click
Description
The following code shows how to change listview theme on click.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from ww w.j a va2s .c om-->
function handle_onClick(language, selectedLiElement) {
selectedLiElement.attr('data-theme', "d");
}
jQuery('#my_panel li' ).on( 'click' , function( argo_e ) {
var lvs_language_id = jQuery(this).attr('data-lang_id') ;
handle_onClick( lvs_language_id, $(this)) ;
});
});//]]>
</script>
</head>
<body>
<ul id="my_panel" data-role="listview" data-inset="true"
data-inline='true'>
<li id='myID' data-lang_id='ENG' data-theme='a'><a href='#'>
English </a></li>
<li id='myID1' data-lang_id='SLO' data-theme='b'><a href='#'>
Slovensko </a></li>
</ul>
</body>
</html>