How to disable all JS events on a webpage loaded under iframe
up vote
0
down vote
favorite
I have a webpage which has JS click/mouseover/mouseout/scroll events and also it has few JS libraries to load carousel, bootstrap modal pop up etc.
I want to stop all events on the element.
I was successful to unbind few click events on html, however was not able to unbind events of the 3rd party JS which is used to slide the carousel / show bootstrap pop up etc.
I tried using :
window.onload = function(){
var anchors = document.getElementsByTagName("a");
for(var a in anchors){
anchors[a].onclick = function(e){
e.preventDefault();
}
}
var divs = document.getElementsByTagName("div");
for(var d in divs){
if (divs[d].removeEventListener) {
console.log("click removed eee");
// For all major browsers, except IE 8 and earlier
divs[d].removeEventListener("click", function(){ console.log("click removed"); });
} else if (divs[d].detachEvent) { // For IE 8 and earlier versions
console.log("click detached eee");
divs[d].detachEvent("click", function(){ console.log("click detached"); });
}
}
};
The anchor redirection was stopped successfully. However the click events on div was still working. Please help me out how to stop all events binding on webpage.
Here is how google is doing?
https://www.google.com/webmasters/markup-helper/tagger?sourceId=104528819
There download the page at their end, render it using iframe and unbind all events. What they might have done?
javascript jquery html addeventlistener event-listener
add a comment |
up vote
0
down vote
favorite
I have a webpage which has JS click/mouseover/mouseout/scroll events and also it has few JS libraries to load carousel, bootstrap modal pop up etc.
I want to stop all events on the element.
I was successful to unbind few click events on html, however was not able to unbind events of the 3rd party JS which is used to slide the carousel / show bootstrap pop up etc.
I tried using :
window.onload = function(){
var anchors = document.getElementsByTagName("a");
for(var a in anchors){
anchors[a].onclick = function(e){
e.preventDefault();
}
}
var divs = document.getElementsByTagName("div");
for(var d in divs){
if (divs[d].removeEventListener) {
console.log("click removed eee");
// For all major browsers, except IE 8 and earlier
divs[d].removeEventListener("click", function(){ console.log("click removed"); });
} else if (divs[d].detachEvent) { // For IE 8 and earlier versions
console.log("click detached eee");
divs[d].detachEvent("click", function(){ console.log("click detached"); });
}
}
};
The anchor redirection was stopped successfully. However the click events on div was still working. Please help me out how to stop all events binding on webpage.
Here is how google is doing?
https://www.google.com/webmasters/markup-helper/tagger?sourceId=104528819
There download the page at their end, render it using iframe and unbind all events. What they might have done?
javascript jquery html addeventlistener event-listener
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a webpage which has JS click/mouseover/mouseout/scroll events and also it has few JS libraries to load carousel, bootstrap modal pop up etc.
I want to stop all events on the element.
I was successful to unbind few click events on html, however was not able to unbind events of the 3rd party JS which is used to slide the carousel / show bootstrap pop up etc.
I tried using :
window.onload = function(){
var anchors = document.getElementsByTagName("a");
for(var a in anchors){
anchors[a].onclick = function(e){
e.preventDefault();
}
}
var divs = document.getElementsByTagName("div");
for(var d in divs){
if (divs[d].removeEventListener) {
console.log("click removed eee");
// For all major browsers, except IE 8 and earlier
divs[d].removeEventListener("click", function(){ console.log("click removed"); });
} else if (divs[d].detachEvent) { // For IE 8 and earlier versions
console.log("click detached eee");
divs[d].detachEvent("click", function(){ console.log("click detached"); });
}
}
};
The anchor redirection was stopped successfully. However the click events on div was still working. Please help me out how to stop all events binding on webpage.
Here is how google is doing?
https://www.google.com/webmasters/markup-helper/tagger?sourceId=104528819
There download the page at their end, render it using iframe and unbind all events. What they might have done?
javascript jquery html addeventlistener event-listener
I have a webpage which has JS click/mouseover/mouseout/scroll events and also it has few JS libraries to load carousel, bootstrap modal pop up etc.
I want to stop all events on the element.
I was successful to unbind few click events on html, however was not able to unbind events of the 3rd party JS which is used to slide the carousel / show bootstrap pop up etc.
I tried using :
window.onload = function(){
var anchors = document.getElementsByTagName("a");
for(var a in anchors){
anchors[a].onclick = function(e){
e.preventDefault();
}
}
var divs = document.getElementsByTagName("div");
for(var d in divs){
if (divs[d].removeEventListener) {
console.log("click removed eee");
// For all major browsers, except IE 8 and earlier
divs[d].removeEventListener("click", function(){ console.log("click removed"); });
} else if (divs[d].detachEvent) { // For IE 8 and earlier versions
console.log("click detached eee");
divs[d].detachEvent("click", function(){ console.log("click detached"); });
}
}
};
The anchor redirection was stopped successfully. However the click events on div was still working. Please help me out how to stop all events binding on webpage.
Here is how google is doing?
https://www.google.com/webmasters/markup-helper/tagger?sourceId=104528819
There download the page at their end, render it using iframe and unbind all events. What they might have done?
javascript jquery html addeventlistener event-listener
javascript jquery html addeventlistener event-listener
asked Nov 11 at 13:55
Vivek Tankaria
9871821
9871821
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04
add a comment |
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You didn't mention the thing that, wheather your conent inside iframe is from another domain or from same?
In case of let say, if your iframe's content isn't from another domain. then below is the solution works for you.
document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);
for more details see the this.
Let me know your point of view. Thanks.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You didn't mention the thing that, wheather your conent inside iframe is from another domain or from same?
In case of let say, if your iframe's content isn't from another domain. then below is the solution works for you.
document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);
for more details see the this.
Let me know your point of view. Thanks.
add a comment |
up vote
0
down vote
You didn't mention the thing that, wheather your conent inside iframe is from another domain or from same?
In case of let say, if your iframe's content isn't from another domain. then below is the solution works for you.
document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);
for more details see the this.
Let me know your point of view. Thanks.
add a comment |
up vote
0
down vote
up vote
0
down vote
You didn't mention the thing that, wheather your conent inside iframe is from another domain or from same?
In case of let say, if your iframe's content isn't from another domain. then below is the solution works for you.
document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);
for more details see the this.
Let me know your point of view. Thanks.
You didn't mention the thing that, wheather your conent inside iframe is from another domain or from same?
In case of let say, if your iframe's content isn't from another domain. then below is the solution works for you.
document.getElementById('edit').contentWindow.addEventListener('keypress', cK, true);
for more details see the this.
Let me know your point of view. Thanks.
answered Nov 13 at 5:00
Priyal Pithadiya
8241512
8241512
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53249449%2fhow-to-disable-all-js-events-on-a-webpage-loaded-under-iframe%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Not quite clear though... in question you say iframe, but in code I see parent dom events... do you inject your script inside iframe or what? Btw, the google link aint working. You could load the page via proxy and remove scripts, than show inside friendly iframe?
– skobaljic
Nov 11 at 14:17
@skobaljic yes I injected my script in the HTML and loaded the whole HTML in iframe. The google link is working. Please recheck.
– Vivek Tankaria
Nov 11 at 15:03
What google does is. It download the webpage. Save it in the HTML page. Stops all event binding and anchor redirection of that page. And render that HTML page in the iframe. The page loads as it used to load on browser, but without any effects and events binded to its element.
– Vivek Tankaria
Nov 11 at 15:04