Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 118
Search took 0.99 seconds.
Search: Posts Made By: Cranford
Forum: JavaScript programming 02-02-2009, 11:22 AM
Replies: 33
Views: 2,424
Posted By Cranford
This: workText = " " + workText; is a hack, not a...

This: workText = " " + workText; is a hack, not a fix.
Forum: JavaScript programming 02-01-2009, 11:03 PM
Replies: 33
Views: 2,424
Posted By Cranford
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: JavaScript programming 02-01-2009, 04:07 PM
Replies: 33
Views: 2,424
Posted By Cranford
Well, I don't take orders from you, either. I...

Well, I don't take orders from you, either. I posted code. Nothing more.
Forum: JavaScript programming 02-01-2009, 03:42 PM
Replies: 33
Views: 2,424
Posted By Cranford
@luigicannavaro: Bob, or Luigi, or whatever...

@luigicannavaro:

Bob, or Luigi, or whatever your name is:

I edited the "highlight" code, again. Save that version using a different name, and try it. I think the latest version is finally,...
Forum: JavaScript programming 02-01-2009, 03:21 PM
Replies: 33
Views: 2,424
Posted By Cranford
@luigicannavaro: Did you see the tooltip...

@luigicannavaro:

Did you see the tooltip code I posted above?

...


line 8 column 1 - Warning: plain text isn't allowed in <head> elements
line 4 column 1 - Info: <head> previously...
Forum: JavaScript programming 02-01-2009, 03:01 PM
Replies: 33
Views: 2,424
Posted By Cranford
Code deleted. KMA.

Code deleted. KMA.
Forum: JavaScript programming 02-01-2009, 02:48 PM
Replies: 33
Views: 2,424
Posted By Cranford
@luigicannavaro : I edited my previous post....

@luigicannavaro :

I edited my previous post. Use that version.



Do you mean a "tooltip"? I'm not willing to make any more changes. This seems like an "Okay, THAT works, but what I...
Forum: JavaScript programming 02-01-2009, 01:36 PM
Replies: 33
Views: 2,424
Posted By Cranford
Code deleted. KMA.

Code deleted. KMA.
Forum: JavaScript programming 01-28-2009, 12:53 PM
Replies: 8
Views: 1,667
Posted By Cranford
Is this what you are trying to do? <!DOCTYPE...

Is this what you are trying to do?

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta...
Forum: JavaScript programming 01-28-2009, 12:19 PM
Replies: 8
Views: 1,667
Posted By Cranford
You can pass anything you want to the show()...

You can pass anything you want to the show() function, separated by commas:



<img src="abc.jpg" width="120" height="90" id="ima47t" show(this.src, this.id)>


That will pass abc.jpg AND...
Forum: JavaScript programming 01-28-2009, 11:17 AM
Replies: 8
Views: 1,667
Posted By Cranford
I have no idea what this: thumbnail>big image ...

I have no idea what this: thumbnail>big image means.

I have no idea what this: accept that as an arbitrary parameter. Arbitrary?

You've posted three lines of HTML in a JavaScript forum. ...
Forum: JavaScript programming 01-27-2009, 10:32 PM
Replies: 8
Views: 1,667
Posted By Cranford
@bothwell: Id's must be unique. Element...

@bothwell:

Id's must be unique. Element names, within a form, can be the same, but not Id's.

You have the onmouseover call inside the anchor tag. The image tag is a child of the anchor tag.
...
Forum: JavaScript programming 01-27-2009, 09:53 PM
Replies: 8
Views: 1,667
Posted By Cranford
@bothwell: Move the onmouseover to the img...

@bothwell:

Move the onmouseover to the img tag, and pass the src to the function:

<img src="abc.jpg" onmouseover="show(this.src)" width="75" height="75">


I have complete code for this...
Forum: JavaScript programming 01-27-2009, 07:47 PM
Replies: 8
Views: 756
Posted By Cranford
@tomraffe Validate your mark-up. You are...

@tomraffe
Validate your mark-up. You are missing the closing form tag, along with 66 other errors.

Place ALL script tags within the Head section. JavaScript has no place inside the Body. ...
Forum: JavaScript programming 12-25-2008, 01:38 PM
Replies: 9
Views: 2,065
Posted By Cranford
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: Post a JavaScript 12-22-2008, 09:37 PM
Replies: 0
Views: 968
Posted By Cranford
Poker Fun! Revisited

Deleted. Lack of interest.
Forum: JavaScript programming 12-21-2008, 02:31 PM
Replies: 12
Views: 1,244
Posted By Cranford
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: JavaScript programming 12-09-2008, 10:37 PM
Replies: 8
Views: 649
Posted By Cranford
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: JavaScript programming 12-09-2008, 10:28 PM
Replies: 8
Views: 649
Posted By Cranford
if (currDisplayName != nDisplay && currFirstName...

if (currDisplayName != nDisplay && currFirstName == nFirst && currLastName == nLast && currUserName == nUser.value && currDomain == nDomain)
{
//alert('Only the display name changed');
...
Forum: JavaScript programming 12-09-2008, 10:07 PM
Replies: 8
Views: 649
Posted By Cranford
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01...

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: JavaScript programming 12-09-2008, 01:10 PM
Replies: 4
Views: 718
Posted By Cranford
rooster: <!DOCTYPE html PUBLIC...

rooster:



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta http-equiv="Content-Type"...
Forum: Post a JavaScript 12-08-2008, 09:57 PM
Replies: 1
Views: 932
Posted By Cranford
Poker Fun

Per Admin:

Furthermore, this forum should only be used for genuine code sharing and discussion. Do not spam or use this forum to promote your own script pages.

When posting the actual...
Forum: JavaScript programming 12-08-2008, 03:01 PM
Replies: 3
Views: 1,040
Posted By Cranford
cyanstudios: Is the "end date" always a...

cyanstudios:

Is the "end date" always a particular day of the week, if so, which day?

Is the "start date" always 7 days prior to the "end date"?
Forum: JavaScript programming 12-04-2008, 03:37 PM
Replies: 2
Views: 2,418
Posted By Cranford
Add / remove images with no coding: ...

Add / remove images with no coding:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Any Title</title>
<meta...
Forum: JavaScript programming 12-03-2008, 10:12 PM
Replies: 28
Views: 1,568
Posted By Cranford
The problem is that the code cannot match: ...

The problem is that the code cannot match:

span>something

or

something</span

the > and < are right up against the letters. I'll bet the words you are trying to match are...
Showing results 1 to 25 of 118

 
Forum Jump

All times are GMT +1. The time now is 11:03 PM.