Skip to content

Instantly share code, notes, and snippets.

View Pearyman's full-sized avatar
🎯
Focusing

Pearyman Pearyman

🎯
Focusing
  • Alibaba
  • Shenzhen,China
View GitHub Profile
@chenwery
chenwery / iframeclick.js
Created February 20, 2014 06:21
javascript:监听页面中iframe被点击
var IframeOnClick = {
resolution : 200,
iframes : [],
interval : null,
Iframe : function() {
this.element = arguments[0];
this.cb = arguments[1];
this.hasTracked = false;
},
track: function(element, cb) {