Last active
July 7, 2021 06:49
-
-
Save Mahno74/57b1e25f031494d8364ce21565588b14 to your computer and use it in GitHub Desktop.
Удобности в HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Вернутся на предыдущую страницу не тригеря PHP форму | |
<input type='submit' value='Назад' onclick='history.back(); return false;'> | |
//Автоматическая перемотка к первому результату поиска точнее к нижней кнопке | |
<script> | |
document.getElementById('backBtn').scrollIntoView(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment