Search code examples
javascripthtmlcssbrowser

source code of a website that is blocked access to right click and Source code


I wanna see the source code of this website but I can't right click or anything! can someone help me with it?

website link: https://vcard2.themefix.ir/full-rtl/about.html


Solution

  • While a page can intercept and block clicks and keystrokes on the page itself, it can't do the same for actions outside the page. Focus on something outside the page (such as the address bar) and use a keyboard shortcut that opens the source - Control-U, in many browsers.

    But the source text of that site is also hard to get to, because there are many empty lines. Use a text processor or some other tool to replace multiple occurrences of \r\n with a single \r\n, and you'll be left with the readable source code in front of you.

    enter image description here