473,499 Members | 1,576 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reaching an html span nested in an html div with javascript

Hi;

I'm working on a demo of using a timer on a web site that is made
visible by making a div visible.

My "PopIn Box" div is empty on the page. Before making it visible I
used javascript to get the content from another hidden div. I'm
doing it this way to make it easier to add in more messages by simply
putting more hidden divs on the page.

My timer function showtime(), at the end, writes the countdown into
the status bar and into the span called "clock" which is inside a
hidden div "content".

This works great in IE 7 and in the latest Firefox. It does not work
for Opera or Safari for windows. These browsers can't seem to reach
the span nested in the div, moving the content around between divs as
I am.

Any ideas why or suggestions for a work around. My sample HTML file
is below the "========" so anyone who wants to take a look can paste
it into a file to play with it.

Thanks much in advance

==========================================
<html>
<head>
<title>Demo: Javascript Timer & Divs </title>
<style type="text/css" type="">
<!-- For IE, we need the width and height of the body set this way
here -->
body
{
height: 100%;
margin: 0;
padding: 0;
width: 100%;
background-color:#d3d3d3;
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity:1;
opacity:1;
}
.popin
{
display:none;
height:50%;
width:50%;
position:absolute;
top:25%;
left:25%;
background:white;
color:black;
padding:1%;
border: 16px solid black;
z-index:1002;
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity:1;
opacity:1;

}
</style>
<script language = "javascript">
// Creat a new Date object called minutes.
var startpoint = new Date();

// Ad 20 minutes to whatever the minutes in the current hour is
// this is the time in the future when the session ends
startpoint.setMinutes(startpoint.getMinutes()+ 20);

//-----------------------------------------------------------------------------
// This function is called whever the page is loaded
// Update the status bar with the time left in the session once per
second AND
// Update the hidden form var once per second with the time left
function showtime()
{
// Make a new date object to be "right now"
var now = new Date();

// Subtract the time when the page loaded ( + 20 min ) - the time
now
// this is the time left int he session
var tDiff = startpoint.getTime() - now.getTime();

//alert("showTime(): " + document.TimerForm.timeSetter.value);
if(document.TimerForm.timeSetter.value != '')
{
startpoint = new Date();
startpoint.setMinutes(startpoint.getMinutes() + 20);
tDiff = startpoint.getTime() - now.getTime();

alert(startpoint.getTime() + " - " + now.getTime() + " = " +
tDiff);
document.TimerForm.timeSetter.value = '';
}
// Set "now" to be the time left in the session
now.setTime(tDiff);

// Put the time left in the session into the hidden form field.
// Format it to be "minutes:seconds". Use the ? short hand
conditional
// to insert a zerio in front of minuets or seconds readings that
are less
// than two digits

document.TimerForm.sysTimer.value = '' +
(now.getMinutes()<10 ? '0' + now.getMinutes():now.getMinutes()) +
':'+
(now.getSeconds()<10 ? '0' +
now.getSeconds():now.getSeconds());
var statusString = "Remaining Session Time : " +
document.TimerForm.sysTimer.value;

statusbar = statusString;
showtimeInClock();

setTimeout('showtime()',1000);

}
//------------------------------------------------------------------------------
// Output time to the span in the div
function showtimeInClock()
{

var divClock = document.getElementById("clock");
divClock.innerHTML = document.TimerForm.sysTimer.value;
}
//-----------------------------------------------------------------------------
function showPopIn()
{
var pop_in = document.getElementById("divPopIn");
var content = document.getElementById("content");
pop_in.innerHTML = content.innerHTML;
pop_in.style.display = "block";
}
//----------------------------------------------------------------------------
function stopPopIn()
{
var pop_in = document.getElementById("divPopIn");
pop_in.style.display = "none";
}
//-----------------------------------------------------------------------------
</script>
</head>
<body>

<p align = "center">
Javascript Timer
</p>
<form name = "TimerForm" action = "">
<input type = "hidden" name = "sysTimer" value = 0>
<input type = "hidden" name = "timeSetter" value = "">
</form>

<!-- The "PopIn" box with the timer in it -->
<div id="divPopIn" class = "popin"></div>

<!-- Content to put in the "PopIn" box -->
<div id="content" style = "display:none;">
<p style = "text-align:center;font-size:150% !important;font-
weight:bold;color:red;">
<u>Count Down:</uin
<span id = "clock" style = "position:center;padding-right:
4px;">
</span>
(min:sec)
<p>
</div>
<script>
// Continually update the time read out in the Pop-In & status bar
showtime(); ;
</script>

<br>
<br>
<a href = "javascript:showPopIn();">Run Timer Display</a>
<br>
<br>
<a href = "javascript:stopPopIn();">Stop Timer Display ()</a>
<br>

</body>
</html>
Jun 27 '08 #1
3 1681
On Apr 17, 9:55 pm, Steve <tinker...@gmail.comwrote:
Hi;

I'm working on a demo of using a timer on a web site that is made
visible by making a div visible.

My "PopIn Box" div is empty on the page. Before making it visible I
used javascript to get the content from another hidden div. I'm
doing it this way to make it easier to add in more messages by simply
putting more hidden divs on the page.

My timer function showtime(), at the end, writes the countdown into
the status bar and into the span called "clock" which is inside a
hidden div "content".

This works great in IE 7 and in the latest Firefox. It does not work
for Opera or Safari for windows. These browsers can't seem to reach
the span nested in the div, moving the content around between divs as
I am.

Any ideas why or suggestions for a work around. My sample HTML file
is below the "========" so anyone who wants to take a look can paste
it into a file to play with it.
I found my own answer and being a good citizen I thought I would post
my answer for people searching usenet archives. In a nutshell, it is
a bug in Opera, fixed in the current beta of the next release:

http://my.opera.com/community/forums...comment2549392
Jun 27 '08 #2
On Apr 18, 11:55 am, Steve <tinker...@gmail.comwrote:
Hi;

I'm working on a demo of using a timer on a web site that is made
visible by making a div visible.

My "PopIn Box" div is empty on the page. Before making it visible I
used javascript to get the content from another hidden div. I'm
doing it this way to make it easier to add in more messages by simply
putting more hidden divs on the page.

My timer function showtime(), at the end, writes the countdown into
the status bar and into the span called "clock" which is inside a
hidden div "content".

This works great in IE 7 and in the latest Firefox. It does not work
for Opera or Safari for windows. These browsers can't seem to reach
the span nested in the div, moving the content around between divs as
I am.
You don't move it, you copy it.

Any ideas why or suggestions for a work around. My sample HTML file
is below the "========" so anyone who wants to take a look can paste
it into a file to play with it.
You create two divs called 'clock', which is invalid HTML so all bets
are off.

[...]
//------------------------------------------------------------------------------
// Output time to the span in the div
function showtimeInClock()
{

var divClock = document.getElementById("clock");
divClock.innerHTML = document.TimerForm.sysTimer.value;}

//-----------------------------------------------------------------------------
function showPopIn()
{
var pop_in = document.getElementById("divPopIn");
var content = document.getElementById("content");
pop_in.innerHTML = content.innerHTML;

pop_in.style.display = "block";}
Now there are two elements with an ID of clock.

[...]
<!-- Content to put in the "PopIn" box -->
<div id="content" style = "display:none;">
<p style = "text-align:center;font-size:150% !important;font-
weight:bold;color:red;">
<u>Count Down:</uin
<span id = "clock" style = "position:center;padding-right:
4px;">
</span>
(min:sec)
<p>
</div>
[...]
--
Rob
Jun 27 '08 #3
On May 13, 7:06 pm, RobG <rg...@iinet.net.auwrote:
You don't move it, you copy it.
Yep. I made several versions of this file and my original post was
about a month ago so I guess I pasted a crappy copy with other
problems in.

The upshot is that Opera has a bug with a dom function that is fixed
in a beta.

Thanks for resonding.
Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
2062
by: ALuPin | last post by:
Hi newsgroup users, I have the following java-script: </SCRIPT> </head> <body text='' link='' vlink='' alink='' bgcolor='FFFFFF'> <p> <center><TABLE cellSpacing=1 cellPadding=1...
2
4323
by: KathyB | last post by:
Hi, I have the following script in an aspx html: <script language="javascript"> function pop_window() { var confirmWin = null; confirmWin = window.open('Scanned.aspx', 'SerialNumbers',...
9
1536
by: Jason Gogela | last post by:
Does anyone out there know why I should care whether a <span> is nested in a <p> or vice versa? What is the bennafit of adhering to this standard? It seems to me that regardless of which way you...
12
2232
by: Nalaka | last post by:
Hi, I suddenly started getting a lot of errors from html validation (some CSS) so I followed the following instructions to disable it. If you'd rather not have these types of HTML validation...
3
3244
by: amit | last post by:
Hello group, How can I assign a link with its related elements (as following) to an array element? Assume having a table with several rows and 3 columns. The first column holding some text...
1
16926
by: since | last post by:
I figured I would post my solution to the following. Resizable column tables. Search and replace values in a table. (IE only) Scrollable tables. Sortable tables. It is based on a lot...
1
2842
by: Steve | last post by:
Hi; I'm working on a demo of using a timer on a web site that is made visible by making a div visible. My "PopIn Box" div is empty on the page. Before making it visible I used javascript to...
7
3590
by: imtmub | last post by:
I have a page, Head tag Contains many Scripts and style sheet for Menu and Page. This code working fine and displaying menus and page as i wanted. Check this page for reference....
0
7111
by: studentofknowledge | last post by:
hi my knowledgeable comrads I have created a web form using html, css with the addition of some basic javascript validation. Although now im having trouble to insert this information to my local...
0
7132
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5475
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4919
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4602
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3103
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1427
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
665
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
302
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.