Answers for "how to send a user to another html file in a website"

7

undo local commit

$ git reset --soft HEAD~1
Posted by: Guest on April-09-2020
1

delete commit

git checkout master
git reset --hard e3f1e37
git push --force origin master
# Then to prove it (it won't print any diff)
git diff master..origin/master
Posted by: Guest on November-18-2020
2

html redirect to another page

<script>
  function foo() {
  	window.location.href = url
  }
</script>
Posted by: Guest on December-09-2020

Code answers related to "how to send a user to another html file in a website"

Code answers related to "Javascript"

Browse Popular Code Answers by Language