jQuery ile sağ tık yasağı

<html>
<head>
<title>Sağ tık yasağı</title>
 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js" type="text/javascript" charset="utf-8"></script>
 
<script type="text/javascript">
 
jQuery(function ($) {
$(this).bind("contextmenu", function (e) {
           e.preventDefault();
                                         });
});
 
</script>
 
</head>
<body>
sağ tık yasaklandı
</body>
</html>

Yorumlar

Bu blogdaki popüler yayınlar

Asp.Net ile Mernisten veri Çekme

Web Servis, WCF Ve Web Api Nedir? Kullanım Alanları Ve Aralarındaki Farklar Nelerdir?