Sep 28, 2011

How to Get and change style of all dropdown in Jquery

 <script type="text/javascript">

  $("select").focusin(function() {
   jQuery(this).closest("table").css("height","+35"); 
    });

 $("select").focusout(function() {
 jQuery(this).closest("table").css("height","auto");      
    });
   
</script>

No comments:

Post a Comment

What is the use of n-tier architecture and 3-tier architecture?

how to implement 3-tier architecture in asp.net using c#. 3-Tier architecture is also called layered architecture. Some people called it ...