<header data-role="header">
<h1> TEA TIME </h1>
<a href="#home" class="ui-btn ui-btn-icon-top ui-icon-back ui-btn-icon-notext">back</a>
</header>
<h1>Takes 3 Minutes</h1>
<p id="timedisp">120 Sec</p>
<div class="clock">
</div>
<a href="#" id="start">Start</a>
<a href="#" id="reset">Reset</a>
</section>
the below is the html that controls my timer
function greenTea(){
Set The Duration var duration = 120;
Insert the duration into the div with a class of clock
$(".clock").html(duration + " sec");
Create a countdown interval
var countdown = setInterval(function () {
// subtract one from duration and test to see
// if duration is still above zero
if (--duration) {
// Update the clocks's message
$(".clock").html(duration + " sec");
// Otherwise
} else {
// Clear the countdown interval
clearInterval(countdown);
// set a completed message
$(".clock").html("End Your Steep");
}
// Run interval every 1000ms
}, 1000);
};
$("a#start").click(greenTea)
Why is the below not working? I am trying to get my p#timedisp to disappear when I click the a#start link.
$("p#timedisp").hide(("a#start").click());
$('#reset').click(function() {
location.reload();
});