Created
April 16, 2016 13:06
-
-
Save tutweb/5a9297b537ede1426c64536e9fd7348e to your computer and use it in GitHub Desktop.
Kunci Konten Dengan Jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Kunci Konten agar tidak bisa di edit di inspect element - Jurnalweb.com</title> | |
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script> | |
<script src="//cnova.github.io/jquery-lock/release/jquery.lock.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
$(".kunci").lock(); | |
}); | |
</script> | |
</head> | |
<body> | |
<h1 class="kunci">Saya Tidak Bisa Diubah, Coba Deh</h1> | |
<p class="kunci">Saya Juga Dikunci, tidak bisa di edit</p> | |
<p>Konten yang ini tidak di dikunci, ini masih bisa diedit</p> | |
<p>Baca tutorialnya di <a href="http://www.jurnalweb.com/cara-agar-konten-website-tidak-bisa-di-edit-inspect-element">Jurnalweb.com</a></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment