javascript - Jscript redirection to SMS editor -
is there way redirect user web page sms editor time delay? this:
function redirect() { window.location="http://www.tutorialspoint.com"; } document.write("you redirected main page in 10 sec."); settimeout('redirect()', 10000);
only instead of "http://www.tutorialspoint.com" using "sms:?body=hello world" example?
after few tests on different browsers, i've came out this:
function redirect() { window.location.href="sms:?body=hello world"; } document.write("you redirected main page in 10 sec."); settimeout('redirect()', 10000);
this working in android guess modified work ios also. please notice: sms:& ios 8, sms:; ios 5,6 , sms:? android.
Comments
Post a Comment