View difference between Paste ID: QdXHuW4P and hKTXe8V6
SHOW: | | - or go back to the newest paste.
1
$this
2
    .siblings('button')
3
        .removeAttr('disabled')
4
        .end()
5
        .attr('disabled', 'disabled');
6
7-
wouldnt this code bellow work better?
7+
//wouldnt this code bellow work better?
8
9
$this
10
    .attr('disabled', 'disabled')
11
    .siblings('button')
12
        .removeAttr('disabled');