displaying image before the link returned through php
I want to display image before the link returned through php. Below is the
ajax code
$.ajax({//Make the Ajax Request
type: "POST",
url: "dbtryout2_2.php",
data:datastr,
success: function(arrayphp)
{
//how to display image before this link
var link = $('' + arrayphp + '');
$(".searchby .searchlist").append(link);
}
});
No comments:
Post a Comment