Fork me on GitHub

resizeThis.js jQuery Plugin

Light-weight Resize for your jQuery elements -- No fuss, No sparkles (and soon no bugs)

  1. Supports CSS resize

    Look, Native CSS resize ( support)

            var $resizable = $( '#native' ).resizeThis();
                
  2. Event based

    No callbacks, All events LOG..

            var $resizable = $( '#events' ).resizeThis({ noNative: true });
    
            $resizable.on( 'rt:start', function() {
                var $cLog = $( this ).find( '.console' );
                $cLog.text( 'STARTED: ' );
            });
    
            $resizable.on( 'rt:stop', function( evt ) {
                var $cLog = $( this ).find( '.console' );
                $cLog.text( $cLog.text() + 'STOPED!' );
            });
    
            $resizable.on( 'rt:resizing', function( evt ) {
                var $cLog = $( this ).find( '.console' );
                $cLog.text( $cLog.text() + 'resizing, ' );
            });
                

I Ain't Scared of No Tests