aboutsummaryrefslogtreecommitdiffstats
path: root/src/jqLite.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/jqLite.js')
-rw-r--r--src/jqLite.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index a2ea286b..6c70f2a8 100644
--- a/src/jqLite.js
+++ b/src/jqLite.js
@@ -118,17 +118,6 @@ JQLite.prototype = {
});
},
- trigger: function(type) {
- if (msie) {
- this[0].fireEvent('on' + type);
- } else {
- var evnt = document.createEvent('MouseEvents'),
- element = this[0];
- evnt.initMouseEvent(type, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, element);
- element.dispatchEvent(evnt);
- }
- },
-
replaceWith: function(replaceNode) {
this[0].parentNode.replaceChild(jqLite(replaceNode)[0], this[0]);
},