Tizen 2.1 base
[platform/framework/web/web-ui-fw.git] / tests / samples / change-page / main.js
1 $( document ).bind("pagecreate", function () {
2         $('#change').bind( "vclick", function () {
3                 console.log( "move page..");
4                 $.mobile.changePage($("#secondPage"), {transition:"none"});
5         });
6
7         $('#back').bind( "vclick", function () {
8                 history.back();
9         });
10
11 });