I am trying to implement a simple jquery function which basically takes a HTML link and show an image preview however I cannot seem to get it working.
I have used JSFiddle - http://jsfiddle.net/W69aA/1/ - to show what I'm trying to do with code
$('.test').blur(function() {
var src = jQuery(this).val();
var prevImg = jQuery('#prev > [id^="prevMe-"]').length;
if (src == null || src == undefined) {
//trying to remove image if it's the same value or input is emptied
jQuery('#prevMe-' + (prevImg - 1)).remove();
} else {
jQuery('#prev').append('<img id="prevMe-' + prevImg + '" style="max-width:50px;" src="' + src + '">');
}
});
I am trying to:
- Remove the preview image if the input link is removed
- Show the preview image if input is there
- Validate it's an image [gif,jpg,png]
Can anyone assist ?