I am opening a link in a new window using jQuery:
<script type="text/javascript">
$(document).ready(function() {
$('a[href="/education/global-health-courses"]').attr("target", "_blank");
});
</script>
I would like to set the size of the new window to 800px wide by 700px tall. I just need a little help adding those attributes to the existing code.
Thanks.