I'm building a website called zorgenbijstand.nl
I have made an submenu on "geschiedenis". This works fine, on all devices using firefox responsive design-mode. Now I have placed the site "live". On my iphone 6s the submenu won't select and close on click. I am doing something wrong, but what? It's an joomla 3.7.0 site.
(function($){
$(document).ready(function () {
// Dropdown menu
if ($('.parent').children('ul').length > 0) {
$('.parent').addClass('dropdown');
$('.parent > a').addClass('dropdown-toggle');
$('.parent > a').attr('data-toggle', 'dropdown');
$('.parent > a').append('');
$('.parent > ul').addClass('dropdown-menu');
}