Reigel Gallarde

A web developer from Philippines. I love Wordpress, PHP, jQuery, javascript, css. and html. A web developer that will bring your web designs into reality.

by Reigel Gallarde

HTML

<input type="text" value="">

CSS

#test1, #test2, #test3, #test4 {

    display:none;

    border:solid 1px red;

}

.addBtn, .editBtn, .deleteBtn, .viewBtn {

    width:60px;

    height:20px;

    color:#fff;

    border:none;

    font-size:14px;

    background-color:blue;

}

JavaScript

$('input').keyup(function(){
    if ($(this).val().indexOf('@hotmail') != -1) {
        alert('no good email.')
    }
})