-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding a Scroll to the Top Button to the website #647
Labels
Comments
Sounds good to me! |
can i solve this issue?? Please assign it to me.... |
1 similar comment
can i solve this issue?? Please assign it to me.... |
Please assign this task to me @smty2018 |
please assign me this issue i can do it...here is the sample code <title>Simple Calculator</title> <style> #scrollUpBtn { display: none; position: fixed; bottom: 20px; right: 30px; z-index: 99; border: none; outline: none; background-color: red; color: white; cursor: pointer; padding: 15px; border-radius: 50%; } </style> <script> function add() { var operand1 = parseFloat(document.getElementById('operand1').value); var operand2 = parseFloat(document.getElementById('operand2').value); document.getElementById('result').value = operand1 + operand2; }
Simple CalculatorAdd Subtract Multiply Divide
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Want to add a scroll to the top button for better UX
The text was updated successfully, but these errors were encountered: