What is the syntax for setting the detail content page via JavaScript?
Posted: Thu Aug 22, 2013 10:37 pm
As the title suggests, I want to set the detail content page using javascript (I'm pulling the page name from a local storage item).
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
As the title suggests, I want to set the detail content page using javascript (I'm pulling the page name from a local storage item).
This is what's being created:
code
$('#ipadscreen1_mobilecontainer2 [name="mobilebutton_10"]').die().live({
click: function() {
if (!$(this).attr('disabled')) {
setDetailContent('Screen2.html');
Code: Select all
}
},
}); /code