i need the id of the div that is pressed, my code looks like this right now, how do i get it?
window.onload = function() {
document.getElementById("one").onclick = call;
document.getElementById("two).onclick = call;
}
function call () {
var id = I need the id here.....
}