$(document).ready(function() {
bugzilla_ajax(
{
url: 'rest/bug_modal/products'
},
function(data) {
$('#product').empty()
$('#product').append($('');
});
},
function() {}
);
});
$('#component')
.change(function(event) {
$("#component option[value='Select Product']").remove();
$('#comp_desc').text($('#component').find(":selected").attr('desc').split('_').join(' '));
});
});