Reviews

Star Rating Form | CodingNepal

Please let us know how you found our service!
Post
const btn = document.querySelector(“button”); const post = document.querySelector(“.post”); const widget = document.querySelector(“.star-widget”); const editBtn = document.querySelector(“.edit”); btn.onclick = ()=>{ widget.style.display = “none”; post.style.display = “block”; editBtn.onclick = ()=>{ widget.style.display = “block”; post.style.display = “none”; } return false; }