I have some code that adds event listeners that were not written with jQuery.
pic1.addEventListener("webkitTransitionEnd",
function(){
pic1.className="down";
pic1.style.zIndex=picclick;
},true);
pic1.addEventListener("oTransitionEnd",
function(){
pic1.className="down";
pic1.style.zIndex=picclick;
},true);
pic1.addEventListener("transitionEnd",
function(){
pic1.className="down";
pic1.style.zIndex=picclick;
},true);
I want to now add the eventListeners with jQuery, and maintain the same functionality. Ideas on what this should look like?
Here's a sketch of what I'm doing... http://jsdo.it/dbwest/4rqo