OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Add links to your buttons (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Add links to your buttons

dejansoftware (User)
Expert Boarder
Posts: 134
graphgraph
User Offline Click here to see the profile of this user
Add links to your buttons 6 Years, 5 Months ago
Karma: 0  
You have developed very nice elements like BUTTONS.

Also, you have described how to use it.

I just want to know, how can I add hyperlink to this button for example www.google.com

<button type="button" class="btn btn-default btn-lg">Default button</button>

Thanks
Dejan
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Add links to your buttons 6 Years, 5 Months ago
Karma: 101  
Dear

For use html tag "button'
You need create some thing like

Code:

<button onclick="location.href='http://ordasoft.com'" type="button">
     www.example.com</button>



or

Code:

<form>
    <button formaction="http://ordasoft.com">Go to Stack Overflow!</button>
</form>



or

Code:

<a href="http://ordasoft.com">
    <button>Click me</button>
</a>



or ....

Regards
Andrew
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
dejansoftware (User)
Expert Boarder
Posts: 134
graphgraph
User Offline Click here to see the profile of this user
Re:Add links to your buttons 6 Years, 5 Months ago
Karma: 0  
Can you please add one of this into:

<button type="button" class="btn btn-default btn-lg">Default button</button>

Thanks
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Add links to your buttons 6 Years, 5 Months ago
Karma: 101  
Sorry,
do you need this ??

Code:

<button type="button" onclick="location.href='http://ordasoft.com'"  class="btn btn-default btn-lg">Default button</button>


Regards
Andrew
Logged Logged
The administrator has disabled public write access.
dejansoftware (User)
Expert Boarder
Posts: 134
graphgraph
User Offline Click here to see the profile of this user
Re:Add links to your buttons 6 Years, 5 Months ago
Karma: 0  
SOLVED

Yes, thanks a lot
Logged Logged
The administrator has disabled public write access.
Go to top
»