Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 74
Search took 0.70 seconds.
Search: Posts Made By: connollyc4
Forum: JavaScript programming 01-04-2013, 04:52 PM
Replies: 1
Views: 232
Posted By connollyc4
Question Disabling fixed textareas after a number is chosen

Hello All.

I need help disabling text area's after a choice has been picked.

I have 3 fixed text areas
1st: 1,2,3
2nd: 4,5,6
3rd: 7,8,9

I also have 3 input text areas.
Forum: JavaScript programming 10-08-2012, 09:10 PM
Replies: 1
Views: 297
Posted By connollyc4
LiveChat. How to replace a text box with a dropdown of user names?

Instead of typing any name in a text box, how can I implement this so a user needs to select their name from a drop down menu. (too many people have been creating fake names so I would like a list of...
Forum: JavaScript programming 01-05-2011, 10:16 PM
Replies: 8
Views: 2,346
Posted By connollyc4
Would this have to print an actual decision tree...

Would this have to print an actual decision tree or just output the prediction in words?
Forum: JavaScript programming 01-05-2011, 09:54 PM
Replies: 7
Views: 10,089
Posted By connollyc4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>test</title>
<script type="text/javascript"...
Forum: JavaScript programming 11-22-2010, 02:09 PM
Replies: 6
Views: 661
Posted By connollyc4
He did the samething here: ...

He did the samething here:

http://www.web-developer.com/forum/showthread.php?t=238722
Forum: JavaScript programming 11-22-2010, 01:55 PM
Replies: 5
Views: 678
Posted By connollyc4
Something like this? <html> <head> ...

Something like this?


<html>
<head>
<script type="text/javascript">

window.onload=function(){

setTimeout(enableIt,5000)
Forum: JavaScript programming 11-17-2010, 03:22 AM
Replies: 3
Views: 1,064
Posted By connollyc4
Yes. Check Post number 10 from Philip M. ...

Yes. Check Post number 10 from Philip M.
http://codingforums.com/showthread.php?t=207805
Forum: JavaScript programming 11-15-2010, 03:30 PM
Replies: 13
Views: 12,400
Posted By connollyc4
I can't see any of the images.. ?

I can't see any of the images.. ?
Forum: JavaScript programming 11-13-2010, 03:42 PM
Replies: 5
Views: 952
Posted By connollyc4
This is done in adobe flash.. You would need to...

This is done in adobe flash.. You would need to buy adobe flash for about 700 bucks unless you download the free 30 day trial...
Forum: JavaScript programming 11-12-2010, 07:27 PM
Replies: 10
Views: 905
Posted By connollyc4
Two thinks you will need to do... add this...

Two thinks you will need to do...

add this to your css (in the <head> section)
a { text-decoration:none }

and change the part with the images to this...


<a href="whatever1.html"><img...
Forum: JavaScript programming 11-12-2010, 04:57 PM
Replies: 3
Views: 558
Posted By connollyc4
<html> <body> <script...

<html>
<body>

<script type="text/javascript">
function showSelected(val)
{
document.getElementById('selectedResult').innerHTML="<a href='mailto:" + val + "'>" + val + "</a><p><font...
Forum: JavaScript programming 11-12-2010, 03:32 PM
Replies: 21
Views: 1,559
Posted By connollyc4
Did you try using Google? ...

Did you try using Google?

http://www.javascriptkit.com/script/script2/xeye.shtml

EDIT********

If you want to actually learn how it is done..

http://arc.id.au/XEyes.html
Forum: JavaScript programming 11-12-2010, 04:05 AM
Replies: 8
Views: 836
Posted By connollyc4
Great advice... There are many ecommerce...

Great advice...

There are many ecommerce sites online which do the work for you. The only one I can remember from school back a couple years ago is X-cart. I am pretty sure they charge you but you...
Forum: JavaScript programming 11-11-2010, 04:02 PM
Replies: 3
Views: 1,098
Posted By connollyc4
something like this? <form...

something like this?


<form name="myForm" id="form1" method="post">
<input type="text" name="comments" id="myText" value="Enter in Text" />
<input type="button"...
Forum: JavaScript programming 11-10-2010, 02:46 PM
Replies: 14
Views: 1,406
Posted By connollyc4
Just change the below code from ...

Just change the below code from

'&nbsp;Business Link', 'businesslink.htm'


To
'&nbsp;Partnerships', 'businesslink.htm'

in the content.js file ... This will still go to the same...
Forum: JavaScript programming 11-10-2010, 02:22 PM
Replies: 14
Views: 1,406
Posted By connollyc4
I thought BlueJ was used for Java?

I thought BlueJ was used for Java?
Forum: JavaScript programming 11-10-2010, 01:42 PM
Replies: 9
Views: 980
Posted By connollyc4
I'll bet 100 bucks he will hand this assignment...

I'll bet 100 bucks he will hand this assignment in with the swedish comments... :D
Forum: JavaScript programming 11-09-2010, 04:52 PM
Replies: 3
Views: 2,365
Posted By connollyc4
Something like this. Someone might need to back...

Something like this. Someone might need to back me up on this....


<html>
<head>
<style type="text/css">
input:hover {
background: green;
}
Forum: JavaScript programming 11-09-2010, 03:51 AM
Replies: 13
Views: 1,172
Posted By connollyc4
I wold imagine he is talking about Microsoft...

I wold imagine he is talking about Microsoft Internet Explorer.
Forum: JavaScript programming 11-09-2010, 12:12 AM
Replies: 13
Views: 1,172
Posted By connollyc4
Why can't you use PhP or ASP with a database like...

Why can't you use PhP or ASP with a database like MySql or Access to store the data from the form?
Forum: JavaScript programming 11-08-2010, 07:35 PM
Replies: 7
Views: 662
Posted By connollyc4
<HTML> <HEAD> <script...

<HTML>
<HEAD>

<script type="text/javascript">

function ifPrime(input)
{

thesqrt = Math.sqrt(input)
Forum: JavaScript programming 11-08-2010, 03:15 AM
Replies: 7
Views: 662
Posted By connollyc4
Something like this? <html> <head> ...

Something like this?

<html>
<head>

<script language="JavaScript">
var count = 0
function find()
{
var number = prompt("Enter Number","")
Forum: JavaScript programming 11-07-2010, 11:14 PM
Replies: 17
Views: 2,272
Posted By connollyc4
is there any way to have all the numbers 1-6 in a...

is there any way to have all the numbers 1-6 in a text area and every time a number is used it is taking away from the box. Or even the opposite, every time a number is entered it goes into a text...
Forum: JavaScript programming 11-07-2010, 03:19 PM
Replies: 7
Views: 844
Posted By connollyc4
Everything loads fine for me in FF

Everything loads fine for me in FF
Forum: JavaScript programming 11-05-2010, 05:40 PM
Replies: 16
Views: 1,895
Posted By connollyc4
Haha. Philip, you are not allowed to take my...

Haha. Philip, you are not allowed to take my quiz!! Anyway, I hope by the time you decode the 30second will reach zero.
Showing results 1 to 25 of 74

 
Forum Jump

All times are GMT +1. The time now is 09:05 AM.