Answers for "jquery get number from value"

0

get number from string using jquery

You can get it like this:

var suffix = 'comment_like_123456'.match(/\d+/); // 123456

With respect to button:

$('.comment_like').click(function(){
  var suffix = this.id.match(/\d+/); // 123456
});

It works for me.
Posted by: Guest on March-03-2021

Code answers related to "jquery get number from value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language