禁止文字を入力できないテキストボックスがあります。#。
ただし、テキストボックスにデータが入力されている場合、これは機能し、テキストボックスの中央にフォーカスを置き、矢印キーを使用して左右に移動すると、テキストボックスの最後にジャンプします。
テキストボックスの途中にも文字を入力すると、また最後まで行きます
$('[id$=txtClient]').keyup(function () {
EnableClientValidateButton(); // When the textbox changes, the user has the ability to validate the client
ChangeColorClient("0"); // The color is changed to white, to notify the user the client is not validated yet.
var $el = $('[id$=txtClient]'); // the text element to seach for forbidden characters.
var text = $el.val(); // The value of the textbox
text = text.split("#").join("");//remove occurances of forbidden characters, in this case #
$el.val(text);//set it back on the element
});