LIKE BUTTON
-
Hello guys,
I would like to get some support on like buttons. So I have pictures on my site, and everyone of those pictures has to have a like button. I cant find any plugin that can help me with that, so I decided to write in in the code.
<!DOCTYPE html>
<html>
<head>
<script>
var clicks = 0;
function myFunction() {clicks += 1;
document.getElementById(“demo”).innerHTML = clicks;}
</script>
</head>
<body><p>Pritisni ovde da lajkujes svoj teren.</p>
<button onclick=”myFunction()”>Like!</button>
<p id=”demo”></p>
</body>
</html>This is the code so far. But…. I can like the image countless times. It has to happen only once. And everytime I refresh the page, those likes are gone. They disappear. Can someone help me with the code?
Very thanks, regards.
The topic ‘LIKE BUTTON’ is closed to new replies.