Skip to content

Instantly share code, notes, and snippets.

@springcome
Created November 5, 2015 00:35
Show Gist options
  • Save springcome/103744fab8a2451cb721 to your computer and use it in GitHub Desktop.
Save springcome/103744fab8a2451cb721 to your computer and use it in GitHub Desktop.
JQuery substring example
$(document).ready(function(){
var txt = 'abcd1234';
var substringTxt = txt.substring(0, 3);
console.log(substringTxt);
});
// result - abc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment