No, there are no new selectors, but if you find yourself doing something similar a lot you can create your own selector. Here is one with somewhat limited use:
$.expr[':'].delete_button = function(el) {
return $(el).is(':submit') && el.name === 'Delete' && el.value === 'Delete';
};
You could then change your line to read:
$('input:delete_button').click(function() {
return window.confirm(this.title || 'Delete this record?');
});
Here is a more functional one, that matches the string arbitrarily:
$.expr[':'].btn = function(el, i, parts) {
return $(el).is(':submit') && el.name === parts[3] && el.value === parts[3];
};
It would be called like this:
$('input:btn(Delete)').click(function() {
return window.confirm(this.title || 'Delete this record?');
});
But would also work if you used the same naming structure for other buttons:
$('input:btn(Save)').click(function() {
return window.confirm(this.title || 'Save this record?');
});