function listen(el, evt, fn){
    //bind target fn
    if (typeof $ !== "undefined"){
        //delegate to jquery
        $(el).on(evt, fn);