Remove everything after a certain character

Is there a way to remove everything after a certain character or just choose everything up to that character? I’m getting the value from an href and up to the “?”, and it’s always going to be a different amount of characters.

Like this

/Controller/Action?id=11112&value=4444

I want the href to be /Controller/Action only, so I want to remove everything after the “?”.

I’m using this now:

 $('.Delete').click(function (e) {
     e.preventDefault();

     var id = $(this).parents('tr:first').attr('id');                
     var url = $(this).attr('href');

     console.log(url);
 }

10 Answers
10

Leave a Comment