skill/HTML.Javscript.CSS

javascript 다른 브라우져로 이동(Go to another browser)

have a nice day :D 2016. 12. 18. 16:25
반응형

<script language="javascript">
function goBrowser() {

 try{

 var shell = new ActiveXObject("WScript.Shell");

 shell.Run("chrome http://www.iruplace.com", 1);

 }catch(err){

  alert("please install chrome");

 }

}
</script>

반응형