I have the following code working fine everywhere except Safari on Windows. Any suggestions how to fix it?
jQuery(document).ready(function() {
// show the form
// alert("hello");
//jQuery(".tab3").attr('disabled', true);
jQuery(".tab2").attr('disabled', false);
jQuery(".tab3").attr('checked', true);
jQuery(".tab2").attr('disabled', true);
jQuery(".tab3").click();
jQuery(".popUp").children('a').get(0).click();
});