Button to redirect to another page
-
- Posts: 39
Button to redirect to another page
Hello! How can i create a button like scroll up to redirect to a html page when is clicked.
Admin
Hi,
What did you try? What code you have?
I think you can make that button a simple <a> link:
Then, style and position the #btnid with css how you wish.
What did you try? What code you have?
I think you can make that button a simple <a> link:
Code: Select all
<a href="page.html" id="btnid" title="Some title">Text</a>
Similar Topics
-
Set Logout redirect page in Script Users Register, Login
Scripts from this website
First post
Pleas I would like to know how I can set where the logout redirects to?Last post
Hello,
In the class.Users.php file it is the logOut() function (line 324) that is accessed when logout request.
The redirect is made with html... -
Redirect after mysql insert
PHP - MySQL
First post
Please help me! I have this code but don't redirect to submit2.WHY?Last post
<!DOCTYPE html>
<?php
require('layout-submit1.php');...
Hello,
The code mysql_query($sql, $conn) is incorrect. Maybe the script it uses MySQLi; in this case you should put: $conn->query($sql) .
Also,... -
Redirect after registration in script register users
Scripts from this website
First post
Hello Admin,Last post
I want to know how I can be able to redirect users to a thank you page after a successful registration instead of a confirmation...
Thank you very much sir. I have other questions that I will post soon, hope you will have the time to answer. -
Button for scroll to top not view
HTML - CSS
First post
Look at mluci.com/d/cont.php .The scroll up burton don't view. He is behind.Why?Last post
This is the css code:
/* BackToTop button css */
#scroll {...
Hi,
It is not viewed because it has display:none; . Delete the display:none; from html and css; and add: z-index:9999; in css to #scroll. -
Disable submit button after first press
JavaScript - jQuery - Ajax
First post
Hello! I have a form that insert results to database.Last post
Many users press this button several times until the confirmation message appears.
How can i...
You can use onclick with: this.style.display='none' , or: this.style.visibility='hidden' ; will automatically hide the button, so, it will not be...