Changeset 103 for Dev/trunk/classes/SurveyCreationTool.php
- Timestamp:
- 09/14/11 14:01:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/SurveyCreationTool.php
r98 r103 21 21 ?> 22 22 23 <div id=" surveyCreation" class="creation"><form id="survey" action="surveycreation.php" method="post">23 <div id="creation"><form id="survey" action="surveycreation.php" method="post"> 24 24 <?php 25 25 $this->surveyHead(); … … 462 462 } 463 463 464 function checkInt(input) 465 { 466 input.style.borderWidth = '1px' ; 467 var value = input.value; 468 if (isNaN(value)) 469 { 470 input.style.borderColor = 'red'; 471 input.checkPassed = 'no'; 472 } 473 else 474 { 475 input.style.border = '1px solid #888;'; 476 input.checkPassed = null; 477 } 478 } 464 479 465 480 466 </script>
Note: See TracChangeset
for help on using the changeset viewer.