Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Releases
Disable inspect element [CMS Security]
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Nicholas" data-source="post: 374607" data-attributes="member: 57721"><p>This is probably the best way of going about this.</p><p>Add these in your head tag (<head></head>)</p><p>First disable F12 element</p><p>[HTML]<script></p><p>$(document).keydown(function(e){</p><p> if(e.which === 123){</p><p> return false;</p><p> }</p><p>});</p><p></script>[/HTML]</p><p>Then disable inspect element on right click</p><p>[HTML]<script></p><p>$(document).bind("contextmenu",function(e) {</p><p>e.preventDefault();</p><p>});</p><p></script>[/HTML]</p><p>so I wanna help make retros secure. If you have any problems contact my Skype at nenglish0820</p><p>I have an example on a retro called Vox Hotel, <a href="https://playvox.pw/" target="_blank">https://playvox.pw</a> on the login page</p></blockquote><p></p>
[QUOTE="Nicholas, post: 374607, member: 57721"] This is probably the best way of going about this. Add these in your head tag (<head></head>) First disable F12 element [HTML]<script> $(document).keydown(function(e){ if(e.which === 123){ return false; } }); </script>[/HTML] Then disable inspect element on right click [HTML]<script> $(document).bind("contextmenu",function(e) { e.preventDefault(); }); </script>[/HTML] so I wanna help make retros secure. If you have any problems contact my Skype at nenglish0820 I have an example on a retro called Vox Hotel, [URL='https://playvox.pw/']https://playvox.pw[/URL] on the login page [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
Disable inspect element [CMS Security]
Top