$(function() {
function mapDataAttributes(element) {
html = "";
$.each(element.data(), function( key, value ) {
html += "
Argument #" + key + " | " + value + " |
";
});
return html;
}
$('#expected tbody td:last-child > a').live('click', function(e){
$('#job-details .modal-body table tbody').html(mapDataAttributes($(this)));
$('#job-details .modal-title').text($(this).attr('title'));
$('#job-details').modal('show');
e.preventDefault();
});
$('#filter-jobs select').live('change', function(e){
$(this).parent('form').submit();
});
});