Created
April 16, 2014 13:22
-
-
Save xboston/10874227 to your computer and use it in GitHub Desktop.
href to image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// для ссылок ведущих на изображение выводим превью | |
$('#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