タッチイベント対応・未対応を判定
by iwbjp
JavaScript
if("ontouchstart" in document.documentElement){
alert("タッチイベント対応");
}
else{
alert("タッチイベント未対応");
}
by iwbjp
if("ontouchstart" in document.documentElement){
alert("タッチイベント対応");
}
else{
alert("タッチイベント未対応");
}