/* Zwingt den Cursor beim Tippen immer ans Ende des Wortes */ jQuery(document).ready(function($) { $('body').on('input', '#search-outer input[type="text"], input#s', function() { var feld = this; setTimeout(function() { if(typeof feld.selectionStart == "number") { feld.selectionStart = feld.selectionEnd = feld.value.length; } }, 5); }); });
Tag

Hamburgmonitor