Guest User

Untitled

a guest
Jan 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $('.hidFileBtn').live('change', function(e){
  2. $childImg = $(this).closest('.parent').find('img.previewImg');
  3. var FileName = $(this).val();
  4. console.log(FileName + "-" + $(this)[0].value);
  5. $childImg[0].src = $(this).val();
  6. });
Add Comment
Please, Sign In to add comment