<script>
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
</script>
دوستای عزیز من قیمت اتوبخار پاناسونیک رو از فروشگاه آنلاین خانگی کالا دریافت کنید. بهترین قیمت لوازم خانگی پاناسونیک هم توی این سایت وجود داره.
<!DOCTYPE html>
<html>
<body>
<p>Click on the button to copy the text from the text field. Try to paste the text (e.g. ctrl+v) afterwards in a different window, to see the effect.</p>
<input type="text" value="Hello World" id="myInput">
<button onclick="myFunction()">Copy text</button>
<p>The document.execCommand() method is not supported in IE8 and earlier.</p>
<script>
function myFunction() {
var copyText = document.getElementById("myInput");
copyText.select();
copyText.setSelectionRange(0, 99999)
document.execCommand("copy");
alert("Copied the text: " + copyText.value);
}
</script>
</body>
</html>
منبع: https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
برای خرید اتوبخار پاناسونیک، اسپرسوساز نوا و دریافت قیمت محصولات خانگی به سایت خانگی کالا مراجعه کنید. همچنین قیمت لوازم خانگی بوش هم داخلش وجود داره و میتونید یه جهازیه ی کامل تهیه کنید.
فقط کافیه کد زیر رو به صفحه HTML اضافه کنید:
<body onselectstart="return false;" oncontextmenu="return false;">
برای جلوگیری از انتخاب متن توسط دکمه Ctrl +A باید کد زیر رو به فایل CSS خودتون اضافه کنید:
body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}