I am creating a training manual but i find using pictures slightly
boring. I have created Shockwave/flash files showing in detail how to
use certain things.
I have tried to embbed the shockwave file into powerpoint and it kind
of works.
What i want is to create a link which opens the shockwave file in a new
window, but just the shockwave file without any toolbars or anything.
I noticed javascript files open in a new window which is ideal for me.
How do i do that? I have a powerpoint file and a shockwave file??
I want to open a simple powerpoint sheet in the browser window. What is the best way to do that?
I have searched in this group and saw different people telling that thepluginn for powerpoint must be placed on the page as well. Can someone help me out?
I would like to create a link where you mouseover and it pops up a powerpoint slide. I know a powerpoint slide would take up the whole page so I would need the powerpoint to pop up near the link and be mini version so that it will show up next to the link.
How can I "click" an existing link with javascript so that the referrer is being passed on? please dont answer with "location.href=..." cause that hides the referrer.
I have a form that I would like to get the values entered on the page and go to a new page in the same window. I can make the code work to open a new window, but I need it to open in the same window. Here is what I have:
I have a script that is working well to detect if the client has acrobat reader is installed or not. I can print out next to the PDF link if the user has or hasn't got the reader. My problem is that i want to call that function and print something out only if the user clicks on the link to see the PDF file. This is where i'm at at the mo
I have a popup window which is a slideshow of about 7 images. When the popup window loads, the first image is present and then the viewer can select next or previous to scroll through the rest of the images.
I'd like to use the same popup window at different points throughout the website and have the Virtual Tour (slideshow) open up at the appropriate photos. Meaning I'd like to control which picture the popup window opens up to, depending on where the user is in the site.
Does anyone know where I can find code that does this? I am somewhat familiar with Javascript but would like to find some ready-made code which accomplishes this.
will both show the javascript link on the browser status bar...of course you can use onmouseover to set the status bar text...but you need to do on all the link....a little over kill.
I have an XML document which lists some information about movies(Title, actor, etc.) I am using Javascript to pull that data and display it as html. Is it possible to create a link for each one of those titles that are pulled from the XML in my JS? Here is my code:
for (var i=0; movies.length > i; i++) { var Title = movies[i].getElementsByTagName("title"); var Actor = movies[i].getElementsByTagName("actor"); var Price = movies[i].getElementsByTagName("price"); results += i+1 + '. ' + ' "<span class="title"><a href="http://www.imdb.com">' + Title[0].firstChild.nodeValue + '</a></span>"' + ' starring <span class="actor">' + Actor[0].firstChild.nodeValue + '</span>' + ' and costs approximately $'+ Price[0].firstChild.nodeValue + "<br/>
I was wondering if I could change the text of a link with a JavaScript. I want to set it up with a JavaScript function so that when A link is clicked on, the text of that link changes and it points to a different function.
(Note that I have put / in above where there is really a just so that it shows up in the post). The link works fine with normal characters in the variable $name, and it works with single quotes in the varable, but not double quotes (the addslashes() escapes single and double quotes with a backslash). Why doesn't the link work with double quotes in the variable?
Code: <a href="#" onclick="window.location='http://YourSite.com'">click here</a> I want to make it so that it opens a new normal browser window just like target=_blank does.
Can anyone assist me with what I am trying to do with the following code (six different scenarios to try to make the functionality work correctly)?
I want to always (and ONLY) display in the status bar 'Symantec Corporation' whenever anyone mouses over (onMouseOver) my image or link OR when one clicks while holding the left mouse down (onClick) on the same image or link. Upon releasing the mouse (onMouseOut), the status bar should be 'blank'. I need the link to open in a new window via my function openWindow(URL) code.
What is happening in most of the six scenarios, is that when one clicks the link, either the function doesn't engage, but rather the <a href= takes effect instead OR that status bar shows 'javascript:openWindow('http://www.symantec.com/');' when one clicks while holding the left mouse down (onClick) on the image or link.
Additionally, for only the link, I need the CSS/style to show 'red' when one mouses over (onMouseOver) it and then change to 'blue' upon releasing the mouse (onMouseOut).
How about integrating 'style="cursor:hand"' into the code or perhaps setting some of the data via a <div> or <span> snippet? Code:
I need a counter that will display beside a link, with the number of times the same link has been clicked. I do not have FTP access to the site, since it is based on a CMS.
When you right click on a link you get the option to save target as...(ie) and save link as...(netscape). Is there some JavaScript to call this function like the JavaScript to open a new window?
I'm trying to append the title attribute to the text of my link. I've got it working, except for the fact that all three links are showing the first link's attribute. Check out the demo at http://outdoor/fuelmultimedia.ca Hover over the Products menu item, and you'll see the drop-down with the attributes.This is the code I'm currently using:
var $titleText = $("#top nav ul ul li a").attr("title"); $("#top nav ul ul li a").append("<em>" + $titleText + "</em>");
I'm new to jQuery and have a problem with links inside an accordion.
The simplified code looks like this: <div class="active-item"> <div class="available-items"> <h5>Headline</h5> </div>
[Code]...
The problem is, that the links inside the table are not active. If i click them, the accordion is closing What do i have to do, to keep the links inside the open accordion as normal links, without closing the accordion?
Im updating a website to use ajax instead of Iframes. Ajax is working fine to load html content into a <div> yet my issue lies with the navigation buttons that trigger my ajax requests.
I have css styled buttons that contain <a> links </a>, i have removed the href and used a onclick event instead but when i remove the href the mouse will lose its hand cursor on hover and the css styled buttons stop working correctly.
Code:
<script type="text/javascript"> function loadXMLDoc() { if (window.XMLHttpRequest)
I'm using Firefox 3.5.5 on Vista 32 Home Premium SP2 and only recently noticed that (javascript/jquery being enabled) link focus is lost when you tab through a page, follow the link to another page and then hit the backspace key to come back. Tab navigation continues at top of page, not with the next link after the one in focus before.
No problems in this respect with IE8 and Opera. As soon as you disable javascript with noscript, the problem disappears and link focus stays, so that tabbing brings on the next link instead of starting on top of page again.
Just confirmed it on jquery/com (following navigation link to Plugins and hitting backspace) and on learningjquery/com (navigation links). A Google search didn't yield any answers nor even any similar reports on this particular problem.
It's even more irksome in my particular case, since I have just implemented a stylesheet switcher in order to enhance certain accessibility aspects, but ironically this particular bug leads to a loss of accessibility.
Does anybody know what might be the reason (version 1.3.2.min related?, cookies related?, etc.) for this and how to solve it?