How to show contact form using popup

Please tell me how I can implement a model popup window in the contact form

+3
source share
4 answers

You can use jQuery Modal Plugins

Here is a good article to show modality in ASP.NET

+2
source

What is the contact form? If this is your custom form, use this function to show it as a modal window: http://msdn.microsoft.com/en-us/library/ms536759(v=vs.85).aspx

0
source
0
<script type="text/javascript">
function openContactForm(){
   var win = window.open('contactus.aspx','Contact Us','width=200,height=100');
}
</script>

<a href="#" id="contactLink" onclick="open_contactForm()">Contact Us</a>

. .

0
source

Source: https://habr.com/ru/post/1782050/


All Articles