PHP beginner |
|
Ok, ik wil dus checken wat er in mijn email boxje staat en als dat goed is dat er dan een vinkje komt en anders een kruisje.
<html>
<head>
<title></title>
<script type="text/javascript">
function function_name(){
if (document.input.inputtext_name.value=="")
{
document.images.status_name.src = fout.bmp
}
else
{
document.images.status_name.src = goed.bmp
}
</script>
<style type="text/css">
input {
border: 1px solid black;
}
</style>
</head>
<body>
<table class="table_name">
<tr>
<td width="50px">
</td>
<td width="500px">
<span>E-mail:</span>
</td>
</tr>
<td width="50px">
<img name="status_name" alt="" src="normaal.bmp"></img>
</td>
<td width="500px">
<input name="inputtext_name" type="text" OnChange="function_name()" />
</td>
<tr>
</tr>
</body>
</html>
<html> <head> <title></title> <script type="text/javascript"> function function_name(){ if (document.input.inputtext_name.value=="") { document.images.status_name.src = fout.bmp } else { document.images.status_name.src = goed.bmp } </script> <style type="text/css"> input { border: 1px solid black; } </style> </head> <body> <table class="table_name"> <tr> <td width="50px"> </td> <td width="500px"> </td> </tr> <td width="50px"> <img name="status_name" alt="" src="normaal.bmp"></img> </td> <td width="500px"> <input name="inputtext_name" type="text" OnChange="function_name()" /> </td> <tr> </tr> </body> </html>
|