Latest Added Tutorials
Change button text and background color then submit form:
<input class="btn btn-primary"
onclick="this.style.backgroundColor='red';
this.style.borderColor='red';
this.value='E-Posta Gönderiliyor... Bu işlem 1-2 dakika sürebilir.. Lütfen Bekleyiniz';
document.getElementById('mainForm').submit()" type="submit" value="Gönder" />...Continue Reading
30-09-2013
Seems the minlength attribute for an input field doesn't work.
Is there any other attribute in HTML5 with the help of which I can set minimal length of value for fields? We can use the pattern attribute.......Continue Reading