複数のクラスを持つ要素があります。このクラスをクリックすると、クラス パーシャルの残りの部分を変数として取得する必要があります。
クラスの最初の部分は常に「jump_」で始まることを知っています
例:
<span class="jump jump_toThis randomClass">Something</span>
$('#tray').on('click', 'span.jump', function(e){
var $this = $(this),
classList = $this.attr('class');
console.log(classList);
// Not sure how to remove *jump_* from *toThis*
// along with the other classes
});