{"id":984,"date":"2015-11-05T15:42:09","date_gmt":"2015-11-05T15:42:09","guid":{"rendered":"https:\/\/www.codexworld.com\/?p=984"},"modified":"2016-04-22T16:44:02","modified_gmt":"2016-04-22T16:44:02","slug":"disable-mouse-right-click-cut-copy-paste-using-jquery","status":"publish","type":"post","link":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/","title":{"rendered":"Disable mouse right click, cut, copy and paste using jQuery"},"content":{"rendered":"<p>Are you want to prevent visitors from copying your web page content? In this short <a href=\"\/category\/jquery\/\">jQuery<\/a> article, we&#8217;ll show you how to stop content theft from your website using jQuery. For stopping the content copy of your website you can do two things, one is to disable the mouse right click and second is to disable the cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V). Using of jQuery, you can easily disable <b>mouse right click<\/b> and disable <b>cut<\/b>, <b>copy<\/b> and <b>paste<\/b> from web content.<\/p>\n<div class=\"img_center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\" alt=\"disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld\" width=\"624\" height=\"316\" class=\"alignnone size-full wp-image-986\" srcset=\"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png 624w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-300x152.png 300w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-350x177.png 350w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-320x162.png 320w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-380x192.png 380w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-200x101.png 200w, https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld-346x175.png 346w\" sizes=\"auto, (max-width: 624px) 100vw, 624px\" \/><\/div>\n<p>At first include the jQuery library.<\/p>\n<pre><span style=\"color:#794938\">&lt;<\/span>script src<span style=\"color:#794938\">=<\/span><span style=\"color:#0b6125\">\"jquery.min.js\"<\/span><span style=\"color:#794938\">><\/span><span style=\"color:#794938\">&lt;<\/span>\/script<span style=\"color:#794938\">><\/span>\r\n<\/pre>\n<h2>Disable Mouse Right Click<\/h2>\n<p>Disable mouse right click will prevent visitors from choosing the cut, copy and paste options. If you want to disable right mouse click for a particular section of a web page, then you can use a selector (<code>#id<\/code>, <code>.class<\/code>, etc.) otherwise use <code>body<\/code> selector for the full page. The following JavaScript code is used to disable mouse right click.<\/p>\n<pre><span style=\"color:#794938\">&lt;<\/span>script type<span style=\"color:#794938\">=<\/span><span style=\"color:#0b6125\">\"text\/javascript\"<\/span><span style=\"color:#794938\">><\/span>\r\n<span style=\"color:#691c97\">$<\/span>(<span style=\"color:#691c97\">document<\/span>)<span style=\"color:#693a17\">.ready<\/span>(<span style=\"color:#a71d5d;font-style:italic\">function<\/span> () {\r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable full page<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>(\"<span style=\"color:#bf4f24\">body<\/span>\").on(<span style=\"color:#0b6125\">\"contextmenu\"<\/span>,<span style=\"color:#a71d5d;font-style:italic\">function<\/span>(e){\r\n        <span style=\"color:#794938\">return<\/span> <span style=\"color:#811f24;font-weight:700\">false<\/span>;\r\n    });\r\n    \r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable part of page<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>(\"<span style=\"color:#bf4f24\">#id<\/span>\").on(<span style=\"color:#0b6125\">\"contextmenu\"<\/span>,<span style=\"color:#a71d5d;font-style:italic\">function<\/span>(e){\r\n        <span style=\"color:#794938\">return<\/span> <span style=\"color:#811f24;font-weight:700\">false<\/span>;\r\n    });\r\n});\r\n<span style=\"color:#794938\">&lt;<\/span>\/script<span style=\"color:#794938\">><\/span>\r\n<\/pre>\n<h2>Disable Cut Copy &#038; Paste<\/h2>\n<p>The following JavaScript code will disable cut, copy and paste from your web page or a part of your web page.<\/p>\n<pre><span style=\"color:#794938\">&lt;<\/span>script type<span style=\"color:#794938\">=<\/span><span style=\"color:#0b6125\">\"text\/javascript\"<\/span><span style=\"color:#794938\">><\/span>\r\n<span style=\"color:#691c97\">$<\/span>(<span style=\"color:#691c97\">document<\/span>)<span style=\"color:#693a17\">.ready<\/span>(<span style=\"color:#a71d5d;font-style:italic\">function<\/span> () {\r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable full page<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>('<span style=\"color:#bf4f24\">body<\/span>')<span style=\"color:#693a17\">.bind<\/span>(<span style=\"color:#0b6125\">'cut copy paste'<\/span>, <span style=\"color:#a71d5d;font-style:italic\">function<\/span> (e) {\r\n        e.preventDefault();\r\n    });\r\n    \r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable part of page<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>('<span style=\"color:#bf4f24\">#id<\/span>')<span style=\"color:#693a17\">.bind<\/span>(<span style=\"color:#0b6125\">'cut copy paste'<\/span>, <span style=\"color:#a71d5d;font-style:italic\">function<\/span> (e) {\r\n        e.preventDefault();\r\n    });\r\n});\r\n<span style=\"color:#794938\">&lt;<\/span>\/script<span style=\"color:#794938\">><\/span>\r\n<\/pre>\n<h2>Disable Mouse Right Click, Cut, Copy &#038; Paste<\/h2>\n<p>Full JavaScript code for disabling mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from the web page.<\/p>\n<pre style=\"background:#f9f9f9;color:#080808\"><span style=\"color:#794938\">&lt;<\/span>script type<span style=\"color:#794938\">=<\/span><span style=\"color:#0b6125\">\"text\/javascript\"<\/span><span style=\"color:#794938\">><\/span>\r\n<span style=\"color:#691c97\">$<\/span>(<span style=\"color:#691c97\">document<\/span>)<span style=\"color:#693a17\">.ready<\/span>(<span style=\"color:#a71d5d;font-style:italic\">function<\/span> () {\r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable cut copy paste<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>('<span style=\"color:#bf4f24\">body<\/span>')<span style=\"color:#693a17\">.bind<\/span>(<span style=\"color:#0b6125\">'cut copy paste'<\/span>, <span style=\"color:#a71d5d;font-style:italic\">function<\/span> (e) {\r\n        e.preventDefault();\r\n    });\r\n   \r\n    <span style=\"color:#5a525f;font-style:italic\">\/\/Disable mouse right click<\/span>\r\n    <span style=\"color:#691c97\">$<\/span>(\"<span style=\"color:#bf4f24\">body<\/span>\").on(<span style=\"color:#0b6125\">\"contextmenu\"<\/span>,<span style=\"color:#a71d5d;font-style:italic\">function<\/span>(e){\r\n        <span style=\"color:#794938\">return<\/span> <span style=\"color:#811f24;font-weight:700\">false<\/span>;\r\n    });\r\n});\r\n<span style=\"color:#794938\">&lt;<\/span>\/script<span style=\"color:#794938\">><\/span>\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Are you want to prevent visitors from copying your web page content? In this short jQuery article, we&#8217;ll show you how to stop content theft from your website using jQuery. For stopping the content copy <\/p>\n","protected":false},"author":1,"featured_media":986,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[6],"tags":[86,85,16,87],"class_list":["post-984","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-jquery","tag-copy","tag-cut","tag-jquery","tag-paste","cat-6-id","has_thumb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Disable mouse right click, cut, copy and paste using jQuery - CodexWorld<\/title>\n<meta name=\"description\" content=\"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Disable mouse right click, cut, copy and paste using jQuery - CodexWorld\" \/>\n<meta property=\"og:description\" content=\"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"CodexWorld\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:published_time\" content=\"2015-11-05T15:42:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-04-22T16:44:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\" \/>\n\t<meta property=\"og:image:width\" content=\"624\" \/>\n\t<meta property=\"og:image:height\" content=\"316\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CodexWorld\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codexworldblog\" \/>\n<meta name=\"twitter:site\" content=\"@codexworldweb\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CodexWorld\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/\"},\"author\":{\"name\":\"CodexWorld\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\"},\"headline\":\"Disable mouse right click, cut, copy and paste using jQuery\",\"datePublished\":\"2015-11-05T15:42:09+00:00\",\"dateModified\":\"2016-04-22T16:44:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/\"},\"wordCount\":219,\"commentCount\":46,\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\",\"keywords\":[\"Copy\",\"Cut\",\"jQuery\",\"Paste\"],\"articleSection\":[\"jQuery\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/\",\"name\":\"Disable mouse right click, cut, copy and paste using jQuery - CodexWorld\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\",\"datePublished\":\"2015-11-05T15:42:09+00:00\",\"dateModified\":\"2016-04-22T16:44:02+00:00\",\"description\":\"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png\",\"width\":624,\"height\":316,\"caption\":\"disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/disable-mouse-right-click-cut-copy-paste-using-jquery\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.codexworld.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Disable mouse right click, cut, copy and paste using jQuery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"name\":\"CodexWorld\",\"description\":\"Web &amp; Mobile App Development Company\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.codexworld.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\",\"name\":\"CodexWorld\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"width\":200,\"height\":19,\"caption\":\"CodexWorld\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldweb\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/codexworld\",\"https:\\\/\\\/www.youtube.com\\\/codexworld\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\",\"name\":\"CodexWorld\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"caption\":\"CodexWorld\"},\"description\":\"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.\",\"sameAs\":[\"http:\\\/\\\/www.codexworld.com\",\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldblog\"],\"url\":\"https:\\\/\\\/www.codexworld.com\\\/author\\\/nitya192265\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Disable mouse right click, cut, copy and paste using jQuery - CodexWorld","description":"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/","og_locale":"en_US","og_type":"article","og_title":"Disable mouse right click, cut, copy and paste using jQuery - CodexWorld","og_description":"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.","og_url":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/","og_site_name":"CodexWorld","article_publisher":"https:\/\/www.facebook.com\/codexworld","article_author":"https:\/\/www.facebook.com\/codexworld","article_published_time":"2015-11-05T15:42:09+00:00","article_modified_time":"2016-04-22T16:44:02+00:00","og_image":[{"width":624,"height":316,"url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","type":"image\/png"}],"author":"CodexWorld","twitter_card":"summary_large_image","twitter_creator":"@codexworldblog","twitter_site":"@codexworldweb","twitter_misc":{"Written by":"CodexWorld","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#article","isPartOf":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/"},"author":{"name":"CodexWorld","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0"},"headline":"Disable mouse right click, cut, copy and paste using jQuery","datePublished":"2015-11-05T15:42:09+00:00","dateModified":"2016-04-22T16:44:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/"},"wordCount":219,"commentCount":46,"publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"image":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","keywords":["Copy","Cut","jQuery","Paste"],"articleSection":["jQuery"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/","url":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/","name":"Disable mouse right click, cut, copy and paste using jQuery - CodexWorld","isPartOf":{"@id":"https:\/\/www.codexworld.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#primaryimage"},"image":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","datePublished":"2015-11-05T15:42:09+00:00","dateModified":"2016-04-22T16:44:02+00:00","description":"Prevent your website content from theft. Disable mouse right click and disable cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V) from web content using jQuery.","breadcrumb":{"@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#primaryimage","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","width":624,"height":316,"caption":"disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld"},{"@type":"BreadcrumbList","@id":"https:\/\/www.codexworld.com\/disable-mouse-right-click-cut-copy-paste-using-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.codexworld.com\/"},{"@type":"ListItem","position":2,"name":"Disable mouse right click, cut, copy and paste using jQuery"}]},{"@type":"WebSite","@id":"https:\/\/www.codexworld.com\/#website","url":"https:\/\/www.codexworld.com\/","name":"CodexWorld","description":"Web &amp; Mobile App Development Company","publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codexworld.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.codexworld.com\/#organization","name":"CodexWorld","url":"https:\/\/www.codexworld.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","width":200,"height":19,"caption":"CodexWorld"},"image":{"@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldweb","https:\/\/www.linkedin.com\/company\/codexworld","https:\/\/www.youtube.com\/codexworld"]},{"@type":"Person","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0","name":"CodexWorld","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","caption":"CodexWorld"},"description":"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.","sameAs":["http:\/\/www.codexworld.com","https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldblog"],"url":"https:\/\/www.codexworld.com\/author\/nitya192265\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2015\/11\/disable-mouse-right-click-cut-copy-paste-using-jquery-by-codexworld.png","jetpack_shortlink":"https:\/\/wp.me\/p6bxIh-fS","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/comments?post=984"}],"version-history":[{"count":6,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/984\/revisions"}],"predecessor-version":[{"id":1001,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/984\/revisions\/1001"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media\/986"}],"wp:attachment":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media?parent=984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/categories?post=984"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/tags?post=984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}