9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
$(window).load(function() {
|
|
$("#username").focus();
|
|
});
|
|
|
|
$(document).ready(function() {
|
|
$("#submit").click(function() {
|
|
$.cookie("airtime_locale", $("#locale").val(), {path: '/'});
|
|
});
|
|
});
|