﻿$(document).ready(function () {

    $('input#txtSearch').focus(function () {
        var s = $(this).val();
        if ($(this).val() == 'Enter code or pen name') {
            $(this).val('')
        }
    });
    $('input#txtSearch').blur(function () {
        if ($(this).val() == '') {
            $(this).val('Enter code or pen name')
        }
    });
});

