Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jquery-inline-svg

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-inline-svg

Replace SVG images with inline SVG element

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
83
decreased by-20.95%
Maintainers
1
Weekly downloads
 
Created
Source

jQuery Inline SVG Build Status

Takes an with an SVG as its source and replace it with an inline so you can manipulate the style of it with CSS/JS etc.

Install

npm

npm install jquery-inline-svg

Manually

Download the dist/jquery-inline-svg.min.js file from this repository and add it to your project.

Usage

Include the jquery-inline-svg script on your page after jQuery.

<script src="jquery.min.js"></script>
<script src="jquery-inline-svg.min.js"></script>

Add some SVG <img> tags.

<img src="image-one.svg" data-inline-svg>
<img src="image-two.svg" data-inline-svg>

Inline them.

<script>
  $('[data-inline-svg]').inlineSvg();
</script>

The <img> tags have now been replaced with the full SVG markup.

Events

svgInlined event will be fired on every <img> with inlined SVG element as argument

$('[data-inline-svg]').on('svgInlined', function (e, svgElement) {
    $(svgElement).addClass('is-loaded');
})

Requirements

This plugin requires jQuery 3

Reference

inlineSvg from UIkit 2 https://github.com/uikit/uikit/blob/v2/master/src/js/core/utility.js#L267

Keywords

FAQs

Package last updated on 17 Mar 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc