I am working on a CMS site that uses dynamic navigation. There is one link on the site that I would like to be able to open in a new window. However, since this is a dynamic environment I can't add the standard, target="_blank" to the link.
Resorting to Javascript I tried the following:
<script type="text/javascript">
window.open ('http://www.foo.edu/education/global-health-courses', 'newwindow', config='height=800, width=700')
</script>
Unfortunately, this does not work properly. I could use a little Javascript magic to have this work properly.
Thanks.