﻿$(document).ready(function () {

    $('#fsWords input:text').focus(function () {
        valideSurEntree('btValidSearch');
    });

    $('#fsWords input:text').each(function () {
        $(this).attr('maxlength', '100');
    });

    $('#resetWords').click(function () {
        //$('#wordsCombi select option:selected').each(function () {
        $('#wordsCombi select :first-child').each(function () {
            $(this).attr('selected', true); 
            //$(this).removeAttr('selected');
        });
        $('#wordsCombi input:text').each(function () {
            $(this).val('');
        });       
    });

});
