Me imagino que seria esto??
Código HTML:
Ver original<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> .contenedor{
width:150px;
height:150px;
padding-top:1em;
text-align:center;
background-color:#2c2c2c;
color:white;
margin:1em;
float:left;
cursor:pointer;
}
<script type="text/javascript"> $(function(){
$(".contenedor").on("mousedown", segundos);
$(".contenedor").on("mouseup", cancelar);
function segundos () {
tiempo = setInterval(tiempof, 1000);
}
function cancelar (){
clearInterval(tiempo);
}
var sec = 0;
function tiempof (){
$(".contenedor").html("
<span>"+ ++sec +" segundos
</span>");
console.log(sec);
}
});