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
Yorum Gönder