Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi i doing a function under play/pause using href ..
my problm is when i press play it plays.. even if i again press the same button it pauses..
problm was when i click back button it not pausing.. it plays continuously .. may i know why... kindly explain me with code.....



thanks in advance
Posted
Comments
karthik Udhayakumar 29-Apr-14 0:56am    
pls post your code

1 solution

hi you can add listener to back button and write code to handle back button event ex:

JavaScript
document.addEventListener("backbutton", function(e){
   write code here to handle back button
}, false);



This is phonegap device API so add cordova/phonegap JS and add this code under device on ready

http://docs.phonegap.com/en/2.9.0/cordova_events_events.md.html#backbutton[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900