Wednesday, 6 February 2013

Find label with its value with Jquery

$('span').filter(function () {
                if ($(this).text() === "01-Jan-1000")
                    $(this).css('visibility', 'hidden');
            });

No comments:

Post a Comment