Here is what i have done ..i want to display the image after input fields is fill up the first field is working now how to add extra input fields to display that particular image on that input fields suggestion are welcome..... HTML CODE
$(document).ready(function() {
$("#username").blur(function() { // when focus out
//$("#message").html(''); //before AJAX response
var form_data = {
action: 'last_name',
username: $(this).val()
};
$.ajax({
type: "POST",
url: "functions.php",
data: form_data,
success: function(result) {
$("#lastnamefirstname").html(result);
}
});
});
});
<div id="lastnamefirstname"></div>
<input id="username" name="lname" required="required" class="text" placeholder="Last Name"/>
functions.php
$action = $_POST['action'];
if($action == 'last_name')
{
$firstnamelast = $_POST['username'];
if($firstnamelast!='')
{
last_name($firstnamelast);
}
}
function last_name($firstnamelast)
{
echo ' <img src="images/profile/name.png" style="margin: 1px 0 -28px -37px;"/>';
}