
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@sjaakp/stylefile
Advanced tools
File input HTML controls are notorious because they are almost impossible to style by means of CSS. Each browser implements the file input in it's own way.
Stylefile is a jQuery widget that takes over the HTML file input control and allows it to be styled like the rest of the page. In addition, it gives the user more feedback on the selected file.
Stylefile is a simple jQuery control. It's only dependency is jQuery.
At the end of the body part, load the jQuery library:
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
And the Stylefile code:
<script src="jquery.stylefile.js"></script>
Stylefile is initialised like:
$(<selector>).stylefile(<options>);
Preferably, this is done in the document.ready handler, like:
<script>
$(document).ready(function () {
$("#fileInput").stylefile({
... Stylefile options ...
});
});
</script>
To select all file inputs on a page, use something like:
<script>
$(document).ready(function () {
$("[type=file]").stylefile({
btnText: "Choose image to upload...",
... other Stylefile options ...
});
});
</script>
The classname(s) of the 'Browse' button. Default is: "btn btn-default" (consistent with Bootstrap CSS).
Text of the 'Browse' button. Default: "Browse".
Number of decimals in the 'nice_nbytes' presentation of the filesize. Default: 3.
The classname(s) of the informative text. Default is "text-muted", another Bootstrap classname.
Template for the informative text. It is a fragment of HTML, in which the following subtexts are replaced by information about the selected file:
{filename} the name of the selected file{imgsize} the image size, in pixels (w x h){nbytes} the file size in bytes{nice_nbytes} the file size in a more readable format.Default: '{filename} <span class="imgsize">{imgsize}</span><br /><span class="filesize">{nice_nbytes} ({nbytes} bytes)</span>'
FAQs
jQuery widget to style HTML File Input
We found that @sjaakp/stylefile 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.