Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
            $(function(){
                report();
            });
            function report() {
                $('#display').html(
                $('#testSubject').width()+'x'+$('#testSubject').height()
            );
            }
        });