Nested Windows Reload
Nov 10, 2006
Our application has a main window (call it window_1) which opens a
popup to display application data (call it window_2). This popup in
turn opens a 3rd popup with additional application data (call it
window_3). This 3rd popup window should reload window_1 when it loads
without reloading window_2.
View 2 Replies
ADVERTISEMENT
Nov 17, 2010
Is there a difference between right clicking an iframe and reloading post reponse vs. using javascript to reload the frame? So far, the javascript route hasn't worked for me. [some context] I am writing a little bookmarklet to help me with the online registrations at my school. Here is the setup.
Load up a page on the domain. Remove all body elements. Insert an iframe. Set iframe to page for class roster search. (in iframe on school search page) Select class search options, POST the form data, and view results in frame. *This works perfectly, but I need to have it refresh results every minute or so. When I use frame.contentDocument.location.reload(true); the frame loses the post data or something and the page is broken. BUT when I just right click on the frame and select "reload frame" it works perfectly. What is the difference between rightclicking the frame and refreshing it like that vs. using javascript to reload the frame?
View 1 Replies
View Related
Oct 27, 2011
I have a simple product display with an product image. The product image changes with ajax when i click in a dropdown menu on another color.
Now i added the (beautiful) zoom script cloud zoom. It just works fine but after i click on another color and the product image reloads the script does not work anymore. instead my <a> is just a normal <a>.
This is the part that reloads at all:
How can i reload the function when this part reloads? Or what else could i do?
View 2 Replies
View Related
Apr 6, 2010
below is clickunder code , but it open under windows when visitor click everywhere on the pagei need it be speacial for links , whenever visitor click on speacial link , it opens windows
<SCRIPT LANGUAGE="Javascript">
function PopShow3() {
CookieTest=navigator.cookieEnabled; if(CookieTest)
[code]....
View 5 Replies
View Related
Jul 23, 2005
I have a parent window that pushes a new window object onto an Array
with the following code :
OpenChild()
{
//totalNumWindowsCreated is global
totalNumWindowsCreated = totalNumWindowsCreated + 1;
childWnds.push(window.open(link, "child" +
totalNumWindowsCreated,"dependent"));
..
..
..
}
This pops up a new window with every call. In the child window I call
a parent function onbeforeunload, appClose() :
function appClose(){
if (window.opener && !window.opener.closed){
window.opener.CloseChild(getQueryString("application"));
}}
This is in my frameset tag of the child code :
<frameset ... onbeforeUnload='appClose()'>
The window.opener.CloseChild() function is called perfectly when I have
one child window open, but as soon as I create another child window
both of the open child windows don't ever call it. They do both go
into the onbeforeunload appClose() function, but do not call the
window.opener.CloseChild() function inside of this routine.
Anyone have any ideas why when I have two child windows open I can't
access the window.opener functions?
I have tried taking each new window out of the array and used the
following code in CloseChild() :
CloseChild()
{
//win and totalNumWindowsCreated are both global
totalNumWindowsCreated = totalNumWindowsCreated + 1;
var win = window.open(link, "child" +
totalNumWindowsCreated,"dependent");
..
..
..
}
View 1 Replies
View Related
Jul 23, 2005
I'm
trying to make a web page with tabs which you can navigate between
without the page reloading. I have one set of tabs working great, but
when I add nested tabs there is a problem with the 'visibility' not
being inherited and some parts stay visible in the sub-tabs. Sorry if
this is unclear.
Here's how I have it layed out: I have a <span> for each content
section of a tab. Then I have do the same thing for the content of each
inner tab. When a tab is pressed some javascript code goes through and
makes all content sections hidden and the content section for the tab
that was pressed visible. If I select a tab and then select an inner
tab it looks like is should, but when I try and select a different tab
for the outer tabs the content for the inner section doesn't go away.
I've found that this is because visibility is not inherited. My
question is if anyone has a solution for this problem. I'm sure there
is somebody that knows of some javascript trickery to do this.
View 5 Replies
View Related
Oct 9, 2005
This code uses a nested IF statement to put a pack of cards into an array of records.
But for some reason the cards arn't going in.. like.. at all? I've put a document.write piece of code at end to display the card in the first slot and [object Object] appears? Code:
View 2 Replies
View Related
Jul 23, 2005
I can't figure out why this doesn't work:
---------------------------------------------
greeting = new Array();
greeting[0][0] = "hey";
greeting[0][1] = "bye";
trace(greeting[0][0] + greeting[0][1]);
---------------------------------------------
Shouldn't this automatically create a multidimensional array? Can someone
help me?
View 5 Replies
View Related
Jul 23, 2005
I'm a greenhorn in SVG and javascripting but I'm learning by doing.
So, here my current problem question :
I have a svg document embedded in another svg document. I whant,
through functions in an external javascript file, manipulate objects
in either the child svg document or the parent document.
How do I get access to elements of the other document ?
Example : I have a document "A" containing X/Y - Axis and included
another svg document "B" with the graphs.
I whant now, as soon as the mouse cursor is over a graph in document
"B" the belonging lable which is located in the parent svg document
"A" to change color or size.
Or I whant the graph in "B" to start blinking as soon as the mouse is
over the lable in "A".
I don't know how cross document borders.
Can anyone give me a short exapmle to get me going?
View 3 Replies
View Related
Jul 23, 2005
i have a nested loop in Javascript and i have a break statement in inner loop. As break statement takes control come out of inner loop. I want to come out of both loops if break statement reaches in inner loop. is there any way to do that ??
View 1 Replies
View Related
Jul 20, 2005
function foo () {
var xyz = 123;
function bar () {
var abc = 456;
}
}
I can alert (foo) to see the function source
Is there an alert (<something>) that will show me only the source of
function bar inside function foo ?
View 5 Replies
View Related
Jan 21, 2010
I'm trying to access an ID nested in a DIV which for the life of me I can't figure out:
<div class="verificationTextBox">Verification:
<a id="download_now" title="Review more about CAPTCHA" rel="#modal1" > </a></div>
<script type="text/javascript">
[code].....
View 2 Replies
View Related
Mar 9, 2011
I develop pages within a third party web application. The page output has tables within tables. I have an 'id' for the table I want, 'oErrorsList' which I then want to find the value of 'SelectedRowID'. I have tried the following code but I get nothing. var myTable.text = $('table').filter('[id=oErrorsList]').SelectedRowID; alert(myTable); I am new to this forum and I don't know if this is enough information so I am including an image of part of the page.
View 12 Replies
View Related
Aug 7, 2010
I have nested structure of div something like thi [code]...
View 1 Replies
View Related
Nov 21, 2009
I really can't figure out why it's not working in IE. The only problem I can think of would be using nested loops. Here's the part of the code that isn't working. It's not generating an error, it's just not returning anything. I know you guys hate when I post entire code, so I trimmed it down as much as I can. It's referring to an already stated xml document with xmlDoc. And it's goal is to return a table of rows that meet certain criteria. If you can see any syntax errors that explorer would not like, that's really what I'm asking for.
[Code]...
View 6 Replies
View Related
Jan 20, 2008
I have two div elements (both dynamically created, one within the other). The parent div has an event attached to it:
contextmenuDIV.onmouseout = function () {doSomething()}
for example. However the onmouseout event will fire when you mouseover the child div as (of course) I am technically leaving the div layer (despite it being the parent).
Is there anyway to cancel this? I've read all about bubbling and all that, but it's just confusing me even more!
Anyway, at all, to allow me to have divs within another div element but only allow the event to fire for the parent!
View 2 Replies
View Related
Mar 5, 2004
I am having problems trying to get a UL node nested inside a UL. I have the following html:
<ul onClick="testing(this);">
<li>Vowels
<ul>
<li>A</li>
<li>E</li>
<li>I</li>
<li>O</li>
</ul>
</li>
....
...
...
</ul>
This can get nested 2-3 levels but for now I cant even get the nested UL node with one nested level. I have tried:
function testing(e){
node=e.firstChild.firstChild
alert(node.nodeName)
but it returns "#text" and not the UL node. I usually do this with DIVs with no problem but I though I would try to use ULs this time but I am not having much luck. How can I get the value of this nested UL?
View 4 Replies
View Related
Mar 14, 2009
my html form contains a table tag <table id="MainTable">. i would like to populate this table using a javascript function. my probllem is that i created a table that contains another table inside on of the <td> tags. i tried to write the most basic code:
var myTable = document.createElement('tbody');
var row1 = document.createElement('tr');
var col1 = document.createElement('td');
var but1 = document.createElement('input');
but1.setAttribute('type','button');
but1.setAttribute('value','button1');
[Cdoe]....
when i run the javascript function it creates the table 'MyTable' and shows the first button but ignores completely from the inner table.
View 8 Replies
View Related
Jul 20, 2010
Check this URL [url]
Grid on above link is made in dotnet. i want to make same UI as in Java. which technologies should be used that can be easy to use with java.
How i create the nested grid using GWT API's.
View 5 Replies
View Related
Oct 1, 2011
this is code for a conway's game of life. the nested loop on stepGen() doesnt work and i cant figure out what it is. no syntax errors, or anything. i put alert statements to see whats happening. i can provide the rest of the code if necessary.[code]
View 2 Replies
View Related
Jun 21, 2006
I am trying to get a java script function that will return the start and end position of a selection and the selection content.
I tried this code I found here (modified a bit)
Javascript text
And it works nearly perfect. As the comments indicate, however, it won't work with any nested elements without some "additional coding". I am just learning JavaScript, so I am ok with the basics. But the DOM tree has me baffled, and I can tell that this is the section of the code that would need to be modified.
So, my question to those that actually know what they are doing, is how do I modify the above script to allow several span nodes nested within one parent div, or is there another source for a code that might get me there?
I did a ton of searching for one, but every one I found was related to selecting within a text area, and I need to select within a parent div.
View 2 Replies
View Related
Jan 30, 2007
I have this code:
Code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript" >
function outer(data)
{
var operand1 = data;
function inner(operand2)
{
alert(operand1 + operand2)
}
}
</script>
<body>
//<input type="button" value="1" onclick="outer(3)(2)" />
//<input type="button" value="2" onclick="outer(3)(2)" />
<div id="target"></div>
</body>
</html>
How do I call the inner function and pass operand?
View 2 Replies
View Related
Jul 23, 2005
I have been trying to include a js file from within another js file. I
can get this to work for firefox, but not i.e. What I have is a.html ...
<script language='JavaScript'
src='b.js'></script><script>Function();</script>
b.js ....
function Function() {
var s1 = "";
document.write("<sc" + s1+ "ript language='JavaScript'
src='c.js'></sc" +s1 + "ript>");
document.write("<sc" + s1+ "ript language='JavaScript'>Func2();</sc" +
s1 + "ript>");
}
and then c.js
I tried the s1="" from another googled post - no joy.
if I change a.html to
<script language='JavaScript' src='cb.js'></script>
<script language='JavaScript'
src='b.js'></script><script>Function();</script>
it works.
Is anyone able to get this to work with IE 6?
View 3 Replies
View Related
Jul 4, 2006
I have try to using createElement to form a nested table, But it seems cannot show the nested table.
View 2 Replies
View Related
Jul 22, 2010
I would like to insert a div into a nested list...to make this:
<ul class="a">
<li class="2"><a href="***">Something</a>
<ul>
<li>Something else...</li>
[Code].....
I am trying to make the each nested ul more specific to help with styling.
View 5 Replies
View Related
Aug 31, 2010
I want to insert a nested <div> into an existing span in a number of table cells, each of which has different content, so:
<td><span>Content</span></td>
would be 'converted' to
<td><span><span>Content</span></span></td>
I have tried:
$('tr td span').prepend("<div>");
$('tr td span').append("</div>");
However, this actually seems to produce
<td><span><div></div>Content</span></td>
I have also tried something along the lines of
$('tr td span').html("<div>" + $(this).text() + "</div>");
but have been having trouble using the this keyword to produce the required effect.
View 2 Replies
View Related