Skip to content

Instantly share code, notes, and snippets.

@cupnoodle
Created June 4, 2022 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cupnoodle/0256c9a106d3a2ad19a4b36d4c4efd02 to your computer and use it in GitHub Desktop.
Save cupnoodle/0256c9a106d3a2ad19a4b36d4c4efd02 to your computer and use it in GitHub Desktop.
Scroll to order actions box after loading
<script>
var cancellable_hash = window.location.hash.substr(1);
if(cancellable_hash === 'actions'){
setTimeout(function() {
document.getElementById('cancellable-title').scrollIntoView();
}, 1500);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment