How to solve "unsafe javascript attempt to access frame with url"? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 49

How to solve "unsafe javascript attempt to access frame with url"?

For example: If I open https://code.sololearn.com/WREh3INM26Zh/#html Using my smartphone. Screenshot of error notification: https://postimg.org/image/8s5ugt1lx/ Screenshot of "about my phone": https://postimg.org/image/cyhyo13dx/ But, I checked on my "phone update center" https://postimg.org/image/6bvauulph/ It said: "already has the latest available system updates". How to solve it?

25th Sep 2017, 9:01 PM
Adi Pratama
Adi Pratama - avatar
10 Answers
+ 16
search a stable custom ROM with lollipop for your device on XDA forums ( google it ). the web view is updated with the Android version till KitKat. after that the app is updated separately from the OS beginning with lollipop
19th Sep 2017, 8:31 AM
Lord Krishna
Lord Krishna - avatar
+ 17
@Adi I'm speaking about this app on lollipop and higher https://play.google.com/store/apps/details?id=com.google.android.webview&hl=en Android System WebView - Android Apps on Google Play https://s26.postimg.org/q5wyzqw2x/Screenshot_2017-09-19-14-01-54.png
19th Sep 2017, 8:34 AM
Lord Krishna
Lord Krishna - avatar
+ 14
@Adi yes you are on older version of Android the web view is old, not the latest hence you get errors. try to share the code in chrome or Firefox will work fine there.
19th Sep 2017, 8:20 AM
Lord Krishna
Lord Krishna - avatar
+ 5
please try this and tell me if it still throws the error: https://code.sololearn.com/WQmhf35EHQJy/?ref=app
19th Sep 2017, 8:24 AM
Jason Cooper
Jason Cooper - avatar
+ 4
sorry: when i first saw the question you had just submitted "How" and so I was answering that. are you now asking how to protect your html from javascript?
19th Sep 2017, 7:58 AM
Jason Cooper
Jason Cooper - avatar
+ 3
console.log("with mirrors");
19th Sep 2017, 7:52 AM
Jason Cooper
Jason Cooper - avatar
+ 3
interesting - i also was not seeing a problem - great job posting error
19th Sep 2017, 8:11 AM
Jason Cooper
Jason Cooper - avatar
+ 3
i *think* it thinks you are trying to do cross-site scripting (although i cannot confirm - as i too am not seeing the error)
19th Sep 2017, 8:17 AM
Jason Cooper
Jason Cooper - avatar
+ 2
:( ah well, it was a longshot. maybe a different update or a different browser on your mobile?
19th Sep 2017, 8:39 AM
Jason Cooper
Jason Cooper - avatar
0
Crossframe-Scripting is not possible when the two frames have different domains -> Security. This means that youtube is trying to reach out to the caller frame for some reason and it's disabled because it would be a cross-domain call. The better solution is to change the iframe.src to a url on the same domain, but which was actually an html re-direct page to the desired domain. The other domain then showed up in your iframe without any errors. Another solution could be to use a local file which retrieves the remote content. http://net-informations.com/q/mis/youtube.html
2nd Mar 2021, 5:10 AM
geverwills