
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
jquery.normalize-grid-rows
Advanced tools
jQuery plugin for grid-of-boxes layouts that will update the heights of elements so that each row of elements has the same height.
A jQuery plugin for grid-of-boxes layouts to adjust the heights of elements so that each row of elements has the same height, that of the largest in the row. It can listen for window resize or other events to re-apply itself.
Include jQuery and this plugin (either dist/jquery.normalize-grid-rows.js or
dist/jquery.normalize-grid-rows.min.js) in your page, then invoke:
$(".myboxes").normalizeGridRows();
where ".myboxes" is a jQuery selector to locate the elements of interest. This
will adjust the collection one time.
Plugin options can specify events like resize and orientationchange to
automatically reapply the behavior when the named events are triggered.
A debounce interval prevents applying the behavior multiple times when the
events are triggered in rapid succession.
To reapply the behavior when the window's resize and orientationchange events are
triggered, use:
$(".myboxes").normalizeGridRows({ events: ['resize', 'orientationchange'] });
The default debounce interval is 250ms; specify a different interval with a 'delay'
property in the options object.
The plugin works by iterating the collection (assumed to be in document order), and finding the contiguous elements that share the same top offset. Each set of such elements are sized to the height of the tallest in the set. The plugin works with or without a responsive framework like Bootstrap or Foundation, and has no dependencies other than jQuery itself.
FAQs
jQuery plugin for grid-of-boxes layouts that will update the heights of elements, row by row, so that each row has the same height.
The npm package jquery.normalize-grid-rows receives a total of 0 weekly downloads. As such, jquery.normalize-grid-rows popularity was classified as not popular.
We found that jquery.normalize-grid-rows 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.