Project

General

Profile

Download (362 Bytes) Statistics
| Branch: | Tag: | Revision:
$(document).ready(function () {
$('#filter_resource_type').change(function () {
$.ajax({
url: $(this).data('url'),
data: {
resource_type: $('#filter_resource_type').val()
},
dataType: "script"
});
});

$('#filter_unlimited').change(function () {
$('#search').prop('disabled', $(this).prop('checked'));
});
});
(6-6/20)