
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
jquery-postify
Advanced tools
A jquery plugin to load images after the main part of the page has been loaded
Postify is a jQuery plugin that allows you to load images after the main part of the page has been loaded. It works by some kind of AJAX calls and has several possibilties to customize. Live Preview
The only thing you have to do is to create a new, empty div container with the tag data-postify which contains the url of the image. After that, simply call the postify() method and provide some options:
$(document).ready(function() {
$('div.postify').postify({...});
});
undefined): url to override the data-postify tagdefault: fade): how should the images be shown up?
0ms): wait some time to load images0): Load images in a certain ordertrue): display loading animations while image is loading?postify-loading): which class has the surrounding container element?<div></div><div></div><div></div><div></div>): which elements should be added to use the css loading animation?parent): how should the size of image or parent be adjusted?
If you have some problems with scaling when using adjustSize: 'parent' try to surround it with an additional div container and assign height and width to that, especially when working with bootstrap:
<div class="col col-4">
<div style="height: 400px; width: 100%;">
<div class="postify postify-test1" data-postify="img/img-1.jpg"></div>
</div>
</div>
Feel free to add some new features, write issues or contact me in a way you prefer: my website
FAQs
A jquery plugin to load images after the main part of the page has been loaded
We found that jquery-postify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.