Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created August 17, 2018 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DrewAPicture/b4faa5e51956bcec13604f5bae32e96f to your computer and use it in GitHub Desktop.
Save DrewAPicture/b4faa5e51956bcec13604f5bae32e96f to your computer and use it in GitHub Desktop.
SellBird registration URL live-preview JS.
$( '#store-name' ).on( 'keyup', function( event ) {
var toConvert = $( this ).val(),
converted = toConvert.replace( /\s+/g, '-' ).toLowerCase(),
description = $( this ).next( '.form-text' );
description.text( 'e.g. ' + converted + '.sellbird.com' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment