HTML programming. I have scanned documents by giving numberr to each document in the folder of cd drive. I want to build a HTMl page with java form. I want to connect the submit button in such a way that if the user enters the number/name of the scanned document in the text box of submit buton and clicks the submit button the corresponding form should automaticall open.
I have the need to create a popup after a delay. The problem I'm getting is that the parent page is refreshing automatically from the action of creating the popup. I don't want the parent page to refresh!
... if it was placed straight into the HTML. Incidentally, it's included into the HTML HEAD area, not the body, as the original source of the script suggested: [URL]
$delay is the delay before the popup opens, in microseconds (so 6000 would be 6 seconds).
What can I do to have the same delayed auto-popup functionality, but without it automatically refreshing the parent page where the above code resides?
As some background to what I'm achieving: The issue with not wanting the parent page to refresh is that each time it does, the login session gets extended. The popup itself (which I already have working ok) provides a 'continue working' function, or close and refresh the parent is nothing has been done after a short period.
Open SELECT dropdown list automatically. I want to simulate a user click or ctrl + up/down on a select drop down list. I tried various ways using create event object and click on the list but list does not drop down.
I need a program by which I want to open several web link autometically after a short interval. E.g. open google.com, then wait for 10 sec, then open yahoo in the same window, then wait for 10 sec, then open gmail, wait for 10 sec, then myspace, and so on.......
in the above i'm getting the following error: "Firefox doesn't know how to open this address, because the protocol (c) isnt associated with any program"
I have a folder "A" with 10 files, all with .txt extensions in it. I want a java script to open all the 10 files in the folder "A" and change the extensions to .js and save it in a folder "B".
I have some sample ajax code i have been toying around with.I have it updating & working properly, but you have to click a button first.How can I set it so that it automatically reads the contents of the text file on page load, and updates every 1000ms?I was trying onload=setinterval(JavaScript:xmlhttpPost("status.php"),1000)[code]
my website is in php .am using a javascript code to open a file .
function dec() { window.open("www.test.com/files/2010/test.pdf"); }
when i click the hyperlink connected to this function , a browser window is opened .path to the file will be dispaled in the address bar i dont want it like tat. i need to open only the file test.pdf , not in browser window so that path will not be seen .
I would like to include text from an external file in my html file. This is normally done with <object> or <iframe> but in this case the style sheet and internal links (like <a href="#positiononpage">) do not work. So I thought of writing a little script which does the following
- open the file http://something.com/textfile.htm - put the content of that file in variable "var" - document.write(var)
Is this possible? (also without using activeX objects)
I am trying to open a FTP file in IE 6, but Its not opening, it throws "Page cannot be Displayed" message. Its work fine in Firefox. Below is the code:<A href="ftp://sysvine.lmt.com/reports/chart.doc">Category Chart</A>even I tried like this:<A href="ftp://username:password@sysvine.lmt.com/reports/chart.doc">Category Chart</A>
How can we open a flv file using the lightbox? I am using the following code <a href="[URL]" class="lightwindow">Link Name</a> But the browser still downloads the file instead of showing it in lightbox. One more thing...is it possible to display some text along with this video in the lightbox?
I have a window open, let's say index.html. On the page I have a link that executes a javascript. I want the javascript to open file new.html in the same window that index.html was displayed in. How do I do this? Everything I try opens a new window.
I'm trying to link to some PDF files from an HTML page that will be used for a presentation. The user wants to have the windows open up in Adobe Reader 7.0 at maximum size (not full screen).
I'd rather a more reliable system than simply resixing the window before hand because I won't always be able to do that before the presentations.
I can make changes to the Adobe Reader configuration or registry (if needed) to make the program always open in full screen. but I would prefer it if I can control the behavior from the HTML link itself.
I�m trying to create a website page which includes a list with three radio buttons. There is a PDF file associated with each radio button. The PDF files are on my computer and have not been uploaded.When the user makes his or her choice, then clicks on �open PDF file�, I want the PDF file associated with that choice to open. How does one do this? Below is the code used to try to do this, but it does not work. (The javascript functions were copied from the internet).
?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
I have web page where user can upload file. He can select which file to upload with standard HTML input of type file. I want to add this feature: when user select some file (e.g. picture, pdf etc.) in file select dialog, I want to add link to selected local file. When user click on it browser(maybe associated application) should open local file so user can review what he selected. I was experimenting with urls with "file" protocol but it works only with html file located on local computer not for one on web server. I found that this is because of security restriction in browsers.
I have a series of video links. On each click, I want to open the video modaly. I thought of using internal divs for each video (hidden at page load) but then it didn't seem to be a good practice since I would need 5 div for each video's player. So, I thought of preparing the player in external file, pass the variables with PHP and play the video file. My player is JW and the videos are FLV.