This is the demo fiddle http://jsfiddle.net/coderslay/76Whv/
The problem is that if i do
<a href="#page2" data-role="button">Button2</a>
Then the button changes the color and everything is fine
But suppose if i try to do it using onclick like this
<a href="#" onclick="changetoPage2()" data-role="button">Button1</a>
Then the button doesn't change the color. How to solve this?