Coder Social home page Coder Social logo

jquery-bem's Introduction

jQuery BEM Plugin

Super simple Block-Element-Modifier manipulation for jQuery.

Usage

Consider the following HTML:

<div class="component some-other-class">
	  <h3 class="component__title">Component Title</h3>
	  <figure class="component__image">
	  	<img src="image.jpg">
		<figcaption class="component__image__caption">Image Caption</figcaption>
	  </figure>
</div>

Initialize

Set the BEM root for the element:

$( '.component' ).bem( '.component' );

Selection

Now we can select the element's BEM children:

$( '.component' ).bemChild( 'title' ).html( 'Updated Title' );

$( '.component' ).bemChild( 'image__caption' ).html( 'Updated Caption' );

$( '.component' ).bemChild( 'image' ).bemChild( 'caption' ).html( 'Updated Caption' );

Modification

Apply modifiers:

$( '.component' ).bemModify( 'updated', true ); // Adds class: component--updated

$( '.component' ).bemModify( 'updated', false ); // Removes class: component--updated

$( '.component' ).bemModify( 'updated' ); // Toggles class: component--updated

$( '.component' ).bemChild( 'image__caption' ).bemModify( 'updated', true ); // Adds class: component__image__caption--updated

$( '.component' ).bemChild( 'image' ).bemChild( 'caption' ).bemModify( 'updated', true ); // Adds class: component__image__caption--updated

$( '.component' ).bemChild( 'image' ).bemChild( 'caption' ).bemModify( 'updated' ); // Toggles class: component__image__caption--updated

jquery-bem's People

Contributors

junaidbhura avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

gutenberg-block

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.