Сообщение от BSI
|
первые символы каждого слова отображаются с заглавной буквы
|
вашим LiveDesigner необучен но на js можно так
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
</head>
<body>
<form onsubmit="return false">
<input id="input" size="50"/>
<button type="submit">Отправить</button>
<script>
(function(){
var input = document.getElementById('input');
input['oninput' in input ? 'oninput' : 'onpropertychange'] = function() {
var str = this.value,
reg =/[^-а-яё\d\s]/g,
regUp =/(^|\s)(\S)/g;
str = str.toLowerCase().replace(reg, '');
str = str.replace(regUp, function g(a, b, c)
{
return b + c.toUpperCase()
});
this.value = str ;
};
})();
</script>
</form>
</body>
</html>