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

Popular posts from this blog

php - Admin SDK -- get information about the group -

dns - How To Use Custom Nameserver On Free Cloudflare? -

Python Error - TypeError: input expected at most 1 arguments, got 3 -