Display status strip c# for certain time code example
Example 1: add set time out in jquery
$(".submit_wide").click(function () {
$(this).val('Please wait..');
$(this).attr('disabled', true);
setTimeout(function() {
$(this).attr('disabled', false);
$(this).val('Submit');
}, 2000);
});
Example 2: how to get all of the chldren of a panel in java
Component[] components = jpanel.getComponents();