Hi
When i upload project from tiggzi, all my pages are wrapped into one single html file, and i want to seperate them. So each page have there own .html file. I have tried litle in VS, but the problom is broken links of listsview and buttons. navigation is not working when i seperate pages, and how can i change navigation onClick event to navigate to a .html file in www root? See my script below:
Code: Select all
$('#j_99 [name="nyheterlistitem1_41"]').die().live({
click: function() {
if (!$(this).attr('disabled')) {
Tiggr.navigateTo('Views/test.html', {
transition: 'flip',
reverse: false
});
}
},
});