Make your web content unselectable on January 29, 2016 Get link Facebook X Pinterest Email Other Apps i'm here to share my another tric to make web content unselectable Demo - try to select following text You can not select me ha ha ha :p Copy And paste following source code in notepade and save it with the extension .html <html> <html> <head> <style> .unselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } </style> </head> <body> <div class="unselect"> You can not select me ha ha ha :p </div> </body> </html> Comments
Comments
Post a Comment