アコーディオンを iPhone だけで動作させるより良い方法はありますか?
$(document).ready(function () {
var device = navigator.userAgent.toLowerCase();
var ios = device.match(/(iphone|ipod|ipad)/);
if (ios) {
$("#Main_Box_Section .box2:not(:first)").hide();
$("#Main_Box_Section h3").click(function () {
$(this).next(".box2").slideToggle("slow").siblings(".box2:visible").slideUp("slow")
})
}
});