Latest jQuery version 1.11.3 is what causes the issue. I had to downgrade jquery to 1.11.2 by adding this to functions.php:
add_action( ‘wp_print_scripts’, ‘de_script’, 100 );
function de_script() {
wp_dequeue_script( ‘jquery’ );
wp_deregister_script( ‘jquery’ );
wp_register_script(‘jquery’, “http” . ($_SERVER[‘SERVER_PORT’] == 443 ? “s” : “”) .
“://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js”, false, null);
wp_enqueue_script(‘jquery’);
}