I am extremely new to Javascript and now very little about it. On the page I am working on, I want to open pdf files in a new window instead of a frame. However, it doesn't show the link as visited until the original page is refreshed.
Click <a href ="filename.pdf" onclick="window.open(this.href,'newwin'); return false"> here</a> is the javascript code that I am using to open the new window.
The Current code is:
<html>
<head>
<title>Lake Huron Learning Collaborative Inc. - LHLC</title>
<meta name="description"
content="The Lake Huron Learning Collaborative is a community-based non-profit organization dedicated to life-long learning and enhanced post-secondary educational choices along the Lake Huron Shoreline.">
<meta name="keywords"
content="Lake Huron Learning, Lake Huron Learning Collaborative, Huron County, Bruce County, Huron, Bruce, life-long learning, enhanced post-secondary, educational choices, University of Western, Western, UofW, Lake Huron Shoreline.">
<meta name="AUTHOR" content="DataQuest Consulting">
<meta http-equiv="CHARSET" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="LANGUAGE" content="English">
<style rolloverstyle="">A:hover {color: #0099CC; font-family: Tahoma; text-decoration: underline} a {text-decoration:none}
</style>
<style>
BODY {
scrollbar-face-color: #336789;
scrollbar-arrow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
Also, "javascript:launchPDF(Report 09)" doesn't work because Report 09 is a variable.
If you want it to be a string, you have to put quotes around it.
"Report 09"
Wrong code = "javascript:launchPDF(Report 09)"
New code = "javascript:launchPDF( 'Report 09' )"
Bookmarks