Is it possible to remote modify an already open window form from a
local HTML file? Example (simplified):
1. I have a local HTML file, where I have some kind of link. When this
link is pressed, then I need to add a "searchstring" into...
2. the second already opened window form (e.g. Google)
I need to do this to avoid any copy / pasting of these values.
All I have read about is that this is possible if I use Parent/Child
windows, but I would like to know if this is possible to do between two
independant pages?
I have the existing code that will change all my links to external sites to open in a new window. I now want to change it to allow me to have a way that it will not do this if I put something special in the a href tag.
I know this should be simple & intuitive but I'm just not smart enough to make it work.I have a JCarousel Lite install and am trying to convert the effect to bounce. What I have currently can be seen here:hat I want can be seen here (demo):Problem: On the demo page above he lists the code but it's the 1.1 version, and I have the 1.3, and much has changed; i.e. his code doesn't work. Here is the carousel js:
(function($) { $.fn.jCarouselLite = function(o) { o = $.extend({
I found an article [URL] that allows a user to search Google directions from a web page. It works very well, however is it possible to have the resulting page open in a popup window?
I dont know a lot about Javascript or AJAX. But, what I am wanting to do is to have two forms and what ever is entered in either will open a new window with that info.
[URL]
In form one I want what is entered to be placed where the 77777 is in the URL in a new window.
In form two I want what is entered to replace IRN=77777 with Username=88888 and where the 88888 is will be what is entered in the field.
I am trying to create a form which when the submit button is selected will open a new window with 1 of 4 URLs based on the the combination of data in 2 select boxes.
For example:
if select box 1 = a and select box 2 = a then open new window with URL 1 if select box 1 = a and select box 2 = b then open new window with URL 2 if select box 1 = b and select box 2 = a then open new window with URL 3 if select box 1 = b and select box 2 = b then open new window with URL 4
I want to open a new browser-window with javascript and fill some input-fields in this window with predefined values. So the User does not have to edit the input-fields manually but only has to submit the form.
.... var childWindow = window.open("http://anyForm.html"); childWindow.document.getElementsByName('anyinputfi eld')[0].value='hello' ....
Unfortunately this does not work... Mozilla throws an error:
"Error: uncaught exception: Permission denied to get property Window.PropertyIterator"
I need to check for a particular window which I opened as a popup, already exists, before I try to open the same again. I achieved that with the following code. So this is fine.
var myWin = null; function openPopup(aURL){ if (( myWin==null) || myWin.closed) { myWin = open(aURL,"myWin"); }
/* Window is already opn, thus maps the url to the same window and give focus */ else { myWin.location = aURL; myWin.focus(); } }
Now my problem is I need to do a similar check for a page thats been href to the top.location top.location=aURL;
In this situation if this same code runs again, i need to check if this window is already open, and if so not to open it. Can it be done in a similar way like the above.
In Firefox, the JavaScript code an interact with the document object to affect HTML structure and CSS style rules as well as define behaviors for given events.
Can the JavaScript code also modify elements of the window object, like menus, not just enable or disable them in a new window? If so, how?
I'm not really much of a javascript programmer, but I occasionally use javascript that I've found here and there. But I'm unable to find anything that helps me in what I'm trying to do now.
I regularly use a snippet of code that pops up a small window to display an image or a very small html file.Using the window.open() function, I'm able to disable scrolling, resizing, etc., and size it to my needs. I'll have a window.close link somewhere on the page. But in my current project, my customer's page has several links related to other companies. When you click on the link, an that company's ad pops up in a small window. At this point, the viewer can simply close the window, or they should be able to click on the ad and be taken to that company's website.
I'm able to have it close the window and open that new url in the parent browser window, but my website customer doesn't want their site to go away. They want the new company's website in a new window.
Or I can simply NOT close the popup window, but now the new company's website is in a relatively small browser window, unable to scroll, resize, etc. Is there a way for me to somehow modify an existing window with an onclick directive - something similar to the window.open() function, OR open a new browser window with window.open() AND close the popup window? If I haven't made myself clear, let me know and I'll try to explain myself better.
I found this forum while running out of ideas and being extremely desperate to fixing a probably small javascript error in a script. the script is supposed to open a small form window that allows the user to input an email address and update it to proceed. the form item is initially unchecked, but as the user clicks it and enter his email address, it updates the value of the email address and the box becomes "checkable". the problem is that with both IE and firefox, the box doesn't close again, doesn't get checkable and basically doesn't work. in the firefox debugging console, I found the following error:
Quote:
The part responsible in the javascript for this section is:
Quote:
And the html code that is supposed to pop up the box is:
Is it possible to read a web page on some web site that contains a form. Then identify the fields in the forms. Then fills the fields with my data. and then submits the form as it submitted normally. I need to do this to automate for my final proyect , i need to fill many web pages remotly
Anyone know how to change the visibility of a DIV in one window from another (pop-up) window? The pop-up was generated by the window with the DIV. The situation: I've got 4 DIVs in the main window with only one showing at a time (it's a multi layered form). The pop-up window is generated from the main window when a user wants to edit certain form fields. When they've completed their edits in the pop-up and submit the main window refreshes with the new data, however the main window defaults to showing the first DIV and hiding the others. When the pop-up is generated from the 2nd, 3rd or 4th DIV I'd like to bring the user back to that DIV, not the first.
If I use a window opener to open a new window, is there a way to detect that the new window is finished loading before carrying out some other directive in the opener window? Can I access the remote window's onload event from the opener window? I need to know that the website has loaded before moving to the next page. something like:
I need setAttribute "src" from main windows to pop-up window (Iframe in it) and also i need to prepload all src files ONCE, so if user ever click to open pop-up and do it againt, its no need to loading againt, can anybody help with the script ... ? Or maybe can sugest me with better method to have same result.
I'm having problems changing a table from a child window.
What works (but I really want to add more complex objects to teh cells not just plain text)
var myTable = self.opener.document.getElementById("MY_TABLE");
var row = myTable.insertRow(); var cell = row.insertCell(); cell.innerText = "New value";
I've tried the two below methods but they both fail.
var myTable = self.opener.document.getElementById("MY_TABLE"); var row = myTable.insertRow(); var cell = row.insertCell(); cell.appendChild(self.opener.document.createTextNo de("New Value")); <-- Gives me an error of "Invalid arguement"
I've also tried
cell.appendChild(document.createTextNode("New Value")); <-- Gives an error of "No such interface supported"
I have a problem on the links on my page im working.sorry guys still a noob and my english is not that good. :b. my question is like i have a list of packages of food. [link_a] [link_b] [link_c] and i have a function that i put in my head tag:
function linkA() { window.open('link_a.html','link','width=300,height=200,resizable=yes'); }
now i can go to linka.html by click my link <A HREF="javascript:linkA()" >link a</A> is there a way i can have one functions that can open a link depend on what page .when it clicks then go to its designated page or i have to stick on writing function for linkB ,C,D and so on.
I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.
I have done this once before but it has been a while. How do I add a new form hidden field and value to an existing form and then submit the form within a function that can be run with an onclick event?
Dynamically creating and assigning elements to a dialog, but I am unable to modify the elements after the window opens. I know that I can see them and they are being correctly assigned because I can look at them with firebug.I was thinking that one source of the problem may be the badly formed html that I am getting out. shouldn't each input tag end with " />"?