How can I change the img src of the img using the ajax. I have the location save in my database and I want to set the img src from the value of something data[0]['patient_photo']
I have the html of like this from my image :
<img id="checkup_pic" src="">
Here is my ajax code :
success: function(data) {
$('#valfname').text(data[0]['patient_fname']);
$('#valmname').text(data[0]['patient_mname']);
$('#vallname').text(data[0]['patient_lname']);
$('#valad').text(data[0]['patient_address']);
$('#valcont').text(data[0]['patient_contact_info']);
$('#valsex').text(data[0]['patient_sex']);
$('#valcvilstat').text(data[0]['patient_civil_status']);
$('#valbday').text(data[0]['patient_bday']);
$('#valage').text(data[0]['patient_age']);
$('#valheight').text(data[0]['patient_height']);
$('#valweight').text(data[0]['patient_weight']);
$('#checkup_pic').attr("src","");
You need to use attr property of jquery and pass your src in the value.
Try below code:
$('#checkup_pic').attr("src",data[0]['patient_photo']);
You could use jQuery functions prop()
or attr()
to set property to the DOM elements :
prop() : Set one or more properties for the set of matched elements.
attr() : Set one or more attributes for the set of matched elements.
So you need just to pass the source of your image data[0]['patient_photo']
to the src
attribute of your img
tag identified by #checkup_pic
, like :
$('#checkup_pic').prop("src", data[0]['patient_photo']);
//Or
$('#checkup_pic').attr("src", data[0]['patient_photo']);
Hope this helps.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With