button click expand and collapse using jquery.
        Posted  
        
            by kumar
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kumar
        
        
        
        Published on 2010-04-30T16:00:58Z
        Indexed on 
            2010/04/30
            16:07 UTC
        
        
        Read the original article
        Hit count: 188
        
jQuery
<script type="text/javascript">
    $(document).ready(function() {
        $('#tmpOpen').click(function() {
            var value = $("#tmpOpen").attr("value");
            if (value == "Expand") {
                document.getElementById("tmpOpen").value = "Collapse";
                $('#Grid tr[role="row"] td a').not('.icon-minus').click();   
            }
            else {
                document.getElementById("tmpOpen").value = "Expand";
                $('#Grid tr[role="row"] td a').not('.icon-plus').click();
            }
        });
</script>
is this right what i am doign here? icon-plus is class name for a...
© Stack Overflow or respective owner