Search:
Type: Posts; User: Mr J
Search:
Search took 0.05 seconds.
-
Do you mean something like this example
<script type=text/Javascript>
function test(){
cont=document.getElementById("container")
contObj=document.getElementById("container_object")
-
How about something like this?
<script type="text/javascript">
a=false
function test(b){
-
If you are simply replacing the contents of the current window with the frameset just use a link as normal
<a href="framesetpage.htm">Frameset</a>
To target an anchor within that frameset may...
-
Give it a try this way
<script type="text/javascript">
var pics = new Array(
[1,7,'Summer Beckett prays with a new convert'],
[2,7,'Bethany Airgood is whole-heartily seeking the LORD'],...
-
Here's one possibility
<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<script type="text/javascript">
-
There are two possibilities here;
Inline
<div class="miblock" onmouseover="this.style.backgroundImage='url(gradient9.jpg)'"></div>
or change the class name
-
Try something like this
<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<script type="text/javascript">
<!--
lastObj = ""
-
You have not stated a display value for the divs that are going to toggle so the first click returns a value of nothing.
Try your script this way
function reaveler(ID){
...
-
It could be how you have initially assign the display property, can you post your code?
-
The images and its text are stored in the array
imgArray = [
['pix1-sm.gif','information', 'The beautiful mountains'],
['pix2-sm.gif','interference','The crystal clear lake'],
...
-
Replace these lines
if (note!=null || note!="")
{newwindow.document.writeln('<br \/><script type="text\/javascript">document.write('note');<\/script><br>')};
With this
-
Try it this way
function PopWin(urlName) {
var popup = window.open(urlName, "",'width=100,height=100');
setTimeout(
function(){
popup.close()
-
ID's must be unique therefore you cannot have 2 elements named test1.
I also noticed that in the div you were trying you also have an img tag, this would hide the background image in the div
...
-
Can you post a link to your page?
-
Give your image tag an ID and replace this line in the code
document.body.style.background = "url("+img+")";
with
document.getElementById("imgID").src= "url("+img+")";
where imgID is...
-
You could give the cell in the left column an ID and then use
offsetHeight to get the height
currentHeight = document.getElementById(cellID).offsetHeight
-
Give this a try
function PopWin(urlName) {
var popup = window.open(urlName, "",'width=100,height=100');
setTimeout(function(){popup.close()},2000)
}
-
You could use the query string to pass the anchor name and div id
<a href="page1.htm?hotdog&divname">Hotdog</a>
Then in page 1
onload=function(){
-
See if this is any help
www.huntingground.freeserve.co.uk/webplus/iframes/iframe_trans.htm
-
Do you mean something like this?
[CODE
<html>
<head>
<script type="text/javascript">
function changeSelection(indexValue){
-
A slight correct is required
function getRadio(){
var selected = "none";
if(document.forms["check"].elements["sex"][0].checked == true){
selected = "male";
}
else if...
-
Might be one here to suit your needs
www.huntingground.freeserve.co.uk/imagery/imgnav.htm
-
Here's a curtain effect, sort off
<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<script type="text/javascript">
<!--
-
Something on these lines maybe
function chkColor(id){
var el = document.getElementById(id)
if(document.uniqueID && el.currentStyle){
textColor=el.currentStyle.color
}
-
The s should not be in
onclick="copy(document.getElementsById('posting_email'));"
|
|