Skip to content

Instantly share code, notes, and snippets.

@redrory
Created March 21, 2011 16:36
Show Gist options
  • Save redrory/879741 to your computer and use it in GitHub Desktop.
Save redrory/879741 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
console.log('eee');
var seconds = 1;
setInterval(
function(){
document.getElementById('seconds').innerHTML = --seconds;
// }, 10);
})
$("a.add").click(function(){
$('<li>'+ "List "+'Mic Test' + '</li>').appendTo('ul');
// $("#topBar").appendTo('ul');
console.log('In but');
});
console.log('eee2');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment