Skip to main content

Bug Tracker

Side navigation

Ticket #4635: test.js


File test.js, 0.4 KB (added by telemaco, May 08, 2009 08:23AM UTC)

Javascript code

$(document).ready(function() {

    var $el = $('<div id="testPanel"></div>');
    $el.css({
        width: 200,
        height: 100,
        position: 'absolute',
        bottom: 0,
        marginBottom: 10,
        backgroundColor: 'black'
    });

    $('body').append($el);

    $('#testLink').click(function(){       
        $('#testPanel').animate({bottom: 150}, 2000, 'linear');
        return false;
    });

});

Download in other formats:

Original Format