if
(isAndroid){
function
android(){
window.setTimeout(
function
(){
},2000);
};
if
(isiOS){
function
ios(){
var
ifr = document.createElement(
"iframe"
);
ifr.style.display =
"none"
;
document.body.appendChild(ifr);
window.setTimeout(
function
(){
document.body.removeChild(ifr);
},2000)
};
}