Posts

Showing posts from September, 2017

Simple Mail Sending Contact Form using PHP and Jquery

here am sharing simple email sending contact us form source code using php and jquery, for this you need a PHP working environment with SMTP protocol enable and jQuery plugin here is the source for sending mail HTML CODE: [code language="html"] <div class="content col-md-5 wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="300ms"> <form id="main-contact-form" class="contact-form mail_class" name="contact-form" method="post" action="email.php"> <div class="err_msg"></div> <div class="form-group"> <input type="text" class="form-control" name="first_name" id="Inputname" placeholder="Full Name" required=""> <label for="first_name"><i class="icon-tag"></i></label> <div class="clearfix"></div> ...

onclick anchor tag open url in bootstrap model

for example let us thisnk your anchor tag is [source language="html"] <a href="https://google.co.in/">Google</a> [/source] Now you need to open that link in bootstrap model,for this just follow this procedure write your anchor tag as make sure you already included jquery js file and bootstrap css file in this page HTML COde: [source language="html"] <span name='https://google.co.in/' class='mapview_link'>Google</span> <div class="modal fade in" id="RtPopupModal" role="dialog"> <div class="modal-dialog" id="RtPopupType"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title" id="rtpopuptitle"></h4> </div...