Skip to content

Instantly share code, notes, and snippets.

@xboston
Created April 16, 2014 13:22
Show Gist options
  • Save xboston/10874227 to your computer and use it in GitHub Desktop.
Save xboston/10874227 to your computer and use it in GitHub Desktop.
href to image
// для ссылок ведущих на изображение выводим превью
$('#chat_body div:last span.message a:regex(data:extension, png|jpg|jpeg|gif)').each(function() {
_img_class = this.href.indexOf('images/smiles')>0 ? '':'images_from_message';
$(this).html($('<img/>').attr('src',this.href).attr('class', _img_class));
_img_class = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment