Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save monodyle/0fdc678d391e0173d8633a4e6171e31c to your computer and use it in GitHub Desktop.
Save monodyle/0fdc678d391e0173d8633a4e6171e31c to your computer and use it in GitHub Desktop.
Chặn tải ảnh khi dùng parseHTML trong jQuery
// http://stackoverflow.com/a/15217348
$.get(URL).done(function (responseText) {
responseText = responseText.replace(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi, function (match, capture) {
return '<img data-src="' + capture + '" />';
});
console.log($(responseText).find('img'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment