How about? I am setting up a page with Wordpress, where you have the possibility of, by pressing a button, you will download a full .csv of all the subscribers to the page. In Chrome, IE and Firefox, this button works, but in Safari it gives me this error.
TypeError: 'undefined' is not a function (evaluating 'link.click()')
The code where I think the error is is as follows
jQuery(document).ready(function () {
jQuery('#subscriber-download').on('click', function () {
From what I read in other pages, it seems that Safari has a compatibility error, or does not like Jquery. How can I solve this? Thanks!