Ok, thanks. That’s a bit beyond me. Is this the code I’d be touching? Any help would be appreciated!
// Responsive Menu (TinyNav)
jQuery(“#hgroup-wrap .menu”).tinyNav({
‘active’ : ‘current-menu-item’, // String: Set the “active” class
header: ” // String: Specify text for “header” and show header instead of the active item
});
// Responsive Menu (Selectbox)
jQuery(function () {
jQuery(“.tinynav”).selectbox();
});
// Aria Haspopup for Touch Devices
jQuery(document).ready(function () {
jQuery(“.menu-item”).has(“ul”).children(“a”).attr(“aria-haspopup”, “true”);
});