|
|
|
|
|
|
|
|
Joomla |
textarea da girilecek karakter sayısını kısıtlamak | | <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script>
jQuery.fn.maxLength = function(max){
this.each(function(){
var type = this.tagName.toLowerCase();
var inputType = this.type? this.type.toLowerCase() : null;
if(type == "input" && inputType == "text" || inputType == "password"){
//Apply the standard maxLength
this.maxLength = max;
}
else if(type == "textarea"){
this.onkeypress = function(e){
var ob = e || event;
var keyCode = ob.keyCode;
var hasSelection = document.selection? document.selection.createRange().text.length > 0 : this.selectionStart != this.selectionEnd;
return !(this.value.length >= max && (keyCode > 50 || keyCode == 32 || keyCode == 0 || keyCode == 13) && !ob.ctrlKey && !ob.altKey && !hasSelection);
};
this.onkeyup = function(){
if(this.value.length > max){
this.value = this.value.substring(0,max);
}
};
}
});
};
$(document).ready(function() {
//örnek uygulama
$('#deneme').maxLength(20);
});
</script>
<textarea id="deneme">codekodu.com</textarea> |
Böyyük Patron Tarafından 30-04-2010 Tarihinde Gönderilmiştir.
Bu Konuyu Yazdır Kaynak : |
|
|
|
|
|
|
İletişim : bpatron@codekodu.com
| |
|
776775Kişi Tarafından Sitemiz Ziyaret Edilmiştir. 6 Kişi Online
Bugün 04
Saat
17
Dakikada Sitemizi Tekil
122
Kişi Ziyaret Etmiştir.
Dün Sitemizi Tekil
769
Kişi Ziyaret Etmiştir.
Sitemizi En Çok Tekil
12-12-2011
Tarihinde
857
Kişi Ziyaret Etmiştir. | |
|
| |
| | |
|
Sitemizdeki bilgilerin büyük çoğunluğu alıntıdır.İlgili yazının yazarının veya kaynak sahibinin istemesi halinde ilgili yazı sitemizden kaldırılacaktır. | |
| | |
|
Sitemizin İmalatı Böyyükpatron Tarafından Yapılmıştır. | |