facing a problem with html page with jquery
want to show a div if user not perform any activity for 20 secs.
i am able to show and hide it using jquery by unable to set time for it
code:
<script type="text/javascript">
$(document).ready(function () {
$("#VisitWidget").hide();
$("#VisitWidget").show();`
$('#BtnBook').click(function () {
$("#VisitWidget").slideToggle();
});
});
</script>
Try this
//