mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-30 20:50:24 +00:00
15 lines
No EOL
287 B
JavaScript
15 lines
No EOL
287 B
JavaScript
//set up the theme switcher on the homepage
|
|
$(function(){
|
|
var lvli = $('#jqm-home ul:eq(2) li:eq(1)');
|
|
lvli
|
|
.clone()
|
|
.find('a:eq(0)')
|
|
.attr('href', '#')
|
|
.text('Theme switcher')
|
|
.click(function(){
|
|
$.themeswitcher();
|
|
return false;
|
|
})
|
|
.end()
|
|
.insertBefore(lvli);
|
|
}); |