5 lines
130 B
JavaScript
5 lines
130 B
JavaScript
|
$("#id_establishment").change(
|
||
|
function() {
|
||
|
window.location.href = "/auction/bidding/" + $(this).val() + "/";
|
||
|
}
|
||
|
);
|