Input Week stepDown() Method - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Week

Description

The stepDown() method decrements the WEEKS value of the week field by a specified number.

Parameter Values

Parameter Description
numberRequired. Specifies the amount of weeks the week field should decrease. Default to "1"

Return Value:

No return value

The following code shows how to Decrement the value of a week field by 10 weeks:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<input type="week" id="myWeek" value="2014-W15">

<button onclick="myFunction()">Test</button>

<script>
function myFunction() {/*w ww .  ja v a2 s . c  o m*/
    document.getElementById("myWeek").stepDown(10);
}
</script>

</body>
</html>

Related Tutorials