How to add a resize event to the div

Source: Internet
Author: User
When the browser window is adjusted to a new height or width, the resize event is triggered. This event is triggered on the window. How can we add a resize event to the div element, how can I change the div height or width? A great God uses jquery to implement the method, so that you can $ (div ). resize (fucntion (){..}) directly used. When the browser window is adjusted to a new height or width, the resize event is triggered. This event is triggered on the window. How can we add a resize event to the p element, what about the change in the height or width of the listener p? A great God uses jquery to implement the method, so that $ ('P'). resize (fucntion () {...}) can be used directly;

(function($, h, c) {    var a = $([]),        e = $.resize = $.extend($.resize, {}),        i,        k = "setTimeout",        j = "resize",        d = j + "-special-event",        b = "delay",        f = "throttleWindow";    e[b] = 250;    e[f] = true;    $.event.special[j] = {        setup: function() {            if (!e[f] && this[k]) {                return false;            }            var l = $(this);            a = a.add(l);            $.data(this, d, {                w: l.width(),                h: l.height()            });            if (a.length === 1) {                g();            }        },        teardown: function() {            if (!e[f] && this[k]) {                return false;            }            var l = $(this);            a = a.not(l);            l.removeData(d);            if (!a.length) {                clearTimeout(i);            }        },        add: function(l) {            if (!e[f] && this[k]) {                return false;            }            var n;            function m(s, o, p) {                var q = $(this),                    r = $.data(this, d);                r.w = o !== c ? o: q.width();                r.h = p !== c ? p: q.height();                n.apply(this, arguments);            }            if ($.isFunction(l)) {                n = l;                return m;            } else {                n = l.handler;                l.handler = m;            }        }    };    function g() {        i = h[k](function() {                a.each(function() {                    var n = $(this),                        m = n.width(),                        l = n.height(),                        o = $.data(this, d);                    if (m !== o.w || l !== o.h) {                        n.trigger(j, [o.w = m, o.h = l]);                    }                });                g();            },            e[b]);    }})(jQuery, this);
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.