ClearInterval() : Iframe And Window Communication ?
May 14, 2010
I have given snippet of code in that it is cgi file in which i am using iframe , source of iframe is calling another cgi file. JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
Code:
View 2 Replies
ADVERTISEMENT
Feb 11, 2010
I have need to communicate between two iframes of the same domain, which live inside a parent page on a different domain that I have no control over. This is a Facebook app and the basic layout is this
apps.facebook.com/myapp
L iframe1 (src='mysite.com/foo')
L iframe2 (src='mysite.com/bar')
I need frame1 to talk to frame2, but in Opera I can't access window.parent. frames['frame2'] to do the usual cross-domain methods (updating location.hash for example) Is there an alternate way to accomplish this in Opera?
View 5 Replies
View Related
Apr 13, 2010
I am new to Javascript and am trying out window communication with a popup.In the main window it opens up a popup window with a button click. The popup window is trying to grab text from the main window and put it in it's (the popup's) window. I guess it needs a test to see if the window is ready??Here's the code:
<html>
<head>
<title>Main</title>[code].....
View 2 Replies
View Related
Nov 12, 2010
I am trying to have a slide show of pictures that are randomly generated stop when the user mouses over the image, I have got everything to work so far except the onmouseover event, even the onmouseout seems to work.
I've tried mutliple different set ups for the "onmouseover="clearInterval();" and nothing seems to work.
View 1 Replies
View Related
Apr 12, 2011
I have a script that works until I add the clearInterval command, and I am not sure what I have done wrong.
The code is:
<script type="text/javascript">
function loadChatTalkRefresh(File,ID,Msg){
var xmlhttp;
if (window.XMLHttpRequest) {
[Code]...
View 6 Replies
View Related
Sep 14, 2011
I have a page that displays in an iframe. How to get the index of the iframe in the parent window in which my page is getting displayed using javascript.
HTML Code:
<html>
<iframe src="A.html"></iframe>
<iframe src="B.html"></iframe>
<iframe src="C.html"></iframe>
</html>
if I run the javascript from B.html then I should get the iframe position as 2. same way, if I run the javascript from C.html then I should get the iframe position as 3.
View 3 Replies
View Related
Jul 28, 2011
I need to fix the communication between the JS located in this page and the PHP form script. When the form is submitted I want the page to automatically update which is already present in the script, thanking the user for the submission. Since the PHP script was changed that communication is broken and I hope to get it communicating once again.
View 2 Replies
View Related
Feb 24, 2006
Let's say I want Javascript to call PhpScript.php?Somevar=Somevalue and display the info. How do I get the php returned data in a Javascript var.
View 4 Replies
View Related
Jul 20, 2005
How can I inform a Javascipt, that must submit my Applet's data, that this same Applet has produced the data in question? Or in other words, is there any way to call a JavaScript junction within the Applet? Is it the best way? What do you suggest?
View 1 Replies
View Related
Jul 8, 2009
I am very new to web development. I would like my website to have an application which allows a user to draw images which can be displayed on other users screens in real time.
An example of this is isketch.net Also on this site i would like users to be able to create accounts and join 'rooms' where they can communicate in real time (as opposed a forum message board). I am looking for something similar to isketch.net
Could somebody please tell me the type of development and programming needed. I have been quoted 1000 a month to build these capabilities but have no idea what is involved. (also may require facebook style real-time updating)
View 4 Replies
View Related
Aug 31, 2010
How to do serial port communication using Javascript?
View 2 Replies
View Related
Jul 23, 2005
I'm trying to find a way to have a script communicate with a server
without having to load a new page. The idea is to have the server act
as a simple wrapper for a database, letting the client do that icky UI
stuff.
I tried the obvious, putting a frame somewhere it doesn't insult the
eye, changing its location, then accessing the new content via DOM.
What I get from IE (6) for my pains is just a rude "permission
denied". This even though I entered "localhost" as a trusted site in
IE's security setting. What's amiss?
View 3 Replies
View Related
Jul 20, 2005
let's me explains my long problem:
I'm doing an intranet with a media part. So im must be able to upload files on
a ftp server AND have a record of informations about this file and meta date in
a MySQL database, shown in a php page.
So the first thing i was doing was:
1/ * A HTML Form, with a <input type="file"> which was uploading the file to
the web server. And then, in the next action-php-page, using ftp functions from
php to upload to the ftp server. But this make upload the file 2 times, which
slow, and the user can't do anythig except waiting in front of a blanck loading
page.
=> no way
(BTW, the site admin refuse that the ftp server and the web server to be the
same computer)
So i tried something else:
2/ * A HTML form, the user enter meta data about the media, click next, and
then, a php page which loads a java applet an pass informations to it (by param
tags).
The applet have a browse button, and a go button, which start the transfert
(JDK 1.4.1) trough the URLConnection. The file is uploaded once, and there is a
progress bar, which is wonderful.
But now, i need the src_file information wich is the java applet. So i have two
options:
A/ I make a post to the webserver from the applet. But i'm using session
identification (needed for tracing users actions) and i'm gonna use SSL in less
than one month, so i think it would be complicated.
B/ I export the information from the java applet to javascript, and then to
HTML hidden field, so that the user can submit the full-hidden-filled form. But
i can't make LiveConnect works.
i'm under Mac OS X 10.2 (jaguar) so i need to make work LiveConnect on both
Safari 1.0 (v85.6), mozilla 1.5, and Mac OS IE (5.2).
View 2 Replies
View Related
Jan 29, 2011
I have a web app with a game and chat updating with ajax very frequently sending thousands of XHR requests to the server during a user's session. The problem is that most clients experience intermittent connection failures or timeouts. On the server it appears to be fine, all requests are logged to have completed successfully and on time but the client gets either a communication failure or a timeout. This makes the user feel like the game or chat just got stuck.
I use YUI for making the XHR calls but I replaced that with jQuery with exact same results. I make sure that only one query is active at a time, so I am sure that I am not hitting the max 2 connections problem. The failure rate may be 1 in 200 hundred requests or something but it seems that when a client has a failure then it fails at a higher rate, say 1 in 10 until the problem goes away. I have clients send back an error request when such errors happen in order to track the problem. I have tried various things to try to figure out what is wrong but I have not found anything. I don't think that it's the client's connection as it happens to a sizable portion of my users, it doesn't look like it's the server either.
So what I am wondering is whether this failure rate is common or expected when doing heavy ajax staff and I need to find a way to work around it or this must be a problem in my system that I need to figure out. If the latter any pointers where to look at?
View 3 Replies
View Related
Oct 28, 2003
I have set of frames... one contains a menu and the other a status frame. I am calling a function from the menu which sets the variables however I need some help passing those variables to the status frame. How would I go about doing such a thing?
This is called from the menu in frame 1 but doesn't work:
Code:
function jumpsec(cat, prod) {
parent.statusbar.category=cat;
parent.statusbar.product=prod;
}
// then my status frame bar has:
document.write(parent.statusbar.category);
document.write(parent.statusbar.product);
The 2 variables are blank on statusbar onload but get populated with each click.
View 4 Replies
View Related
Jul 23, 2005
Is-it possible to modify a window from an another window without having a
link Parent To Child?
View 2 Replies
View Related
Apr 6, 2009
I am working on a robot project, that is required to create a website to control the robot via serial port.. The website is plainly html, no linking to database is needed...
I have no idea how and what language to use and can JavaScript communicate with serial port? and how?
View 2 Replies
View Related
Jan 24, 2011
I am wondering how Back, Forward browser button works for iframes. Does it bring back/forward iframe or top window? I remember I had before a problem because I wanted to bring back iframe and not top window as it did. But today I tested my Facebook app and was surprised to see it works as I need which means it brings back/forward iframe window and not top. Is it possible that Facebook has some javascript code which does that or is this normall behaviour?
View 4 Replies
View Related
May 19, 2008
I created a prototype.js/window.js "Window" pseudo window div with another page from the same directory loaded in its iframe I could not put a button/link on the iframe doc that would close it by calling functions in the parent window
I used "window.parent" "parent" alone "top" but the only thing I could access from the iframe was the window.parent.location property I ended up constructing the Window by writing the content to it from the main page, not loading a url in the iframe
But it bugs me that I couldn't access the parent window functions (or anything, getElementById didn't work either, so Window method $('Window_ID').close() wouldn't work either)
View 9 Replies
View Related
Jul 23, 2005
i have the following script:
function subCat(){
var d = document.all;
var i = d.sid.value;
if(i != "-1"){
window.location = "subcat.php?sid="+i;
}
}
That is called on the following drop down menu:
<select name="sid" class="dropBox" id="sid" onChange="javascript:subCat()">
<option value="-1">Please Select</option>
<option value="1">category 1</option>
<option value="2">category 2</option>
<option value="3">category 3</option>
<option value="4">category 4</option>
</select>
It works fine in IE but not in Mozilla Firefox, what do i need to chnage to
make it work correctly?
View 2 Replies
View Related
Nov 26, 2009
I have a PARENT HTML page. Within it, there is an iFrame. Let us call page inside of iFrame is CHILD.I would like to following things:1. When click button in CHILD, A NEW full size page opens and mouse focus moves to NEW.I used following scripts:
function openFullWin(urlPara)
{ var windowFeatures = 'menubar=1,modal=0,resizable=1,scrollbars=1,status=1,toolbar=1,width=' + screen.availWidth
[code]....
View 1 Replies
View Related
May 17, 2007
I have a page that contains 3 Iframes.
Left is navigation
Center is main content
Bottom is footer
How would I put together a link from the navigation that allows me to open a NEW Iframe over the existing Center region? I don't want to target the existing Iframe and load the link in that window. I want the existing Center Iframe to remain open and an additional Iframe to open with the new page.
The goal is so that the 2 Iframes are independent. They are both forms and I need them to be able to copy and paste into both forms at the same time without affecting each other.
View 2 Replies
View Related
Feb 21, 2005
I have jsp1.jsp with an iframe iframe1.jsp within. Once the http session is expired any page is redirected to a logout1.jsp page.
If the iframe1.jsp was loaded and httpsession expired the logout1.jsp is displayed inside the iframe .... but I want it to be displayed on the full screen.
My idea is to check once loading the logout1.jsp if it is inside an iframe and to reload it's parent. I tried following lines within the logout.jsp. It worked well, but caused an infinite loop ...
if (window.parent != null )
window.parent.location.reload();
I guess it is not the correct way to check if a window is within an iframe...
View 1 Replies
View Related
Apr 19, 2005
I have an Iframe in my page and it's referencing a database application. Everything works until I choose a selection form that forces a refresh and then the whole iframe pops out of my page and into it's own page.
So if I put iframe source of page1.htm into page2.htm when the refresh happens I just page page1.htm not embedded in page2.htm. It's like it's jumping out of my page.
View 5 Replies
View Related
Dec 16, 2009
force a page that always wants to open in a new window to open in an iframe?
I have several links on the same page with an iframe to the side, and i would like it for the pages to open in the iframe without ever leaving the main page, so the user could click a link and the page would appear, and the links are still on the side to be able to click a different one. I have it working right now on most pages, but there are a few pages (which i cannot modify the code) that are opening in new windows, and was curious if there was a way to force it into the frame?
View 3 Replies
View Related
Oct 12, 2009
How can I access an iframe window using jQuery? The only iframe related stuff I have found is contents(), which allows me to access the DOM in the iframe. For now, I am using $("iframe")[i].contentWindow, but it seems to be IE only.
View 7 Replies
View Related