Jump to content

How to Grey out


bluehope

Recommended Posts

need some javascript for this. Heres an example. All it does is disables whatever boxes don't have text in them.

-------------------

<html>

<body>

<center>

<form name="uploadform" enctype="multipart/form-data" method="post" action=<?php $_SERVER[php_SELF] ?>

Choose a file to upload:<input type="file" name="file01"/><br>

Choose a file to upload:<input type="file" name="file02"/><br>

Choose a file to upload:<input type="file" name="file03"/><br>

<input type='button' value='submit' onclick='validate(this.form)'>

</form>

</center>

<script language='javascript'>

function validate(frm){

 

var imagearray = new Array();

 

for(var i = 0; i < (frm.length - 1); i++){

 

if(frm.value == ""){

frm.disabled = "true";

}

}

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/108531-how-to-grey-out/#findComment-556522
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.