Skip to content Skip to sidebar Skip to footer

What Are My Alternatives To Modal Or Modeless Dialogs To Display Information And Contact Forms?

I have a couple of links on an in-progress website that will display what I am calling 'one-shot' information - stuff like a bit about the project and contact forms etc that I real

Solution 1:

Modal pops are the best practice. I won't advice to go for any other technique for contact forms. There is a straight forward technique HTML <form> use it if you don't like complexity. Sample code for a simple HTML form

<divid == "errorresponse"></div><formname = "myform"action = "action.php"method = "post"onSubmit = "validate()"><inputtype = "text"name = "firstname"/><inputtype = "text"name = "email"/><inputtype = "submit"name = "submit"value = "Click Here to Submit"/></form>

Solution 2:

You can use Expand and Collapse method to display your different link information. That would be easier and won't require page reloads.

Also Modal popup is an good option but number of clicks increases in it.

Both type of demo you can find in below link.

websemantics.co.uk/resources/accessible_css3_modal_pop-ups/

Post a Comment for "What Are My Alternatives To Modal Or Modeless Dialogs To Display Information And Contact Forms?"