Answers for "redirect to another webpage?''"

16

git undo commit

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1
Posted by: Guest on September-04-2020
0

undo reset commit git

git reflog //to get commitID
git reset #commitID
Posted by: Guest on December-02-2020
4

redirect to another webpage?

// similar behavior as an HTTP redirect
window.location.replace("http://codegrepper.com");

// similar behavior as clicking on a link
window.location.href = "http://codegrepper.com";

window.location.href; // Returns the href (URL) of the current page
window.location.hostname; // Returns the domain name of the web host
window.location.pathname; // Returns the path and filename of the current page
window.location.protocol; // Returns the web protocol used (http: or https:)
window.location.assign; // Loads a new document
window.location.replace; // RReplace the current location with new one.
Posted by: Guest on October-02-2021
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 "redirect to another webpage?''"

Code answers related to "Javascript"

Browse Popular Code Answers by Language