Answer the question
In order to leave comments, you need to log in
jQuery and using mobile buttons?
Good evening everyone! Asked here a question, I do application using IntelXDK. There is a simple function:
$(document).on("click", ".uib_w_9", function(evt)
{
$('#indexlist').slideUp();
$('#actionslist').slideDown();
});
Answer the question
In order to leave comments, you need to log in
Register when pressing the back button:
Pressing the back button
document.addEventListener("intel.xdk.device.ready",function() {
//start grabbing the Android hardware back button
intel.xdk.device.addVirtualPage();
},false);
document.addEventListener("intel.xdk.device.hardware.back", function() {
//continue to grab the back button
intel.xdk.device.addVirtualPage();
window.location.hash = 'indexlist';
}, false);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question