+<script type="text/javascript">
+$(function() {
+ $("#username").focus()
+ .keydown(function() {
+ clearTimeout(self.searching);
+ self.searching = setTimeout(function() {
+ $.get("<?php echo $GLOBALS['root']; ?>ajaxIsAvailable.php?username=" + $("#username").val(), function(data) {
+ if (data) {
+ $("#availability").removeClass()
+ .html("<?php echo T_('Available'); ?>");
+ } else {
+ $("#availability").removeClass()
+ .addClass("not-available")
+ .html("<?php echo T_('Not Available'); ?>");
+ }
+ }
+ );
+ }, 300);
+ });
+});
+</script>