чем заменить mouseover

Тема в разделе "OpenCart", создана пользователем gtx, 22 июн 2014.

  1. gtx

    gtx

    Регистрация:
    8 янв 2013
    Сообщения:
    108
    Симпатии:
    10
    Подскажите как сделать что бы окно было открыто всегда а не появлялось при наведении.

    this.options.element.priceScale.live({
    mouseover: function(){
    $this.delayShow($('#fields-price-' + $this.options.php.module), 'fields-price-show-' + $this.options.php.module, 250);

    $this.clearTimeout('fields-price-hide-' + $this.options.php.module);
    },
    mouseout: function() {
    $this.delayHide($('#fields-price-' + $this.options.php.module), 'fields-price-hide-' + $this.options.php.module, 1000);

    $this.clearTimeout('fields-price-show-' + $this.options.php.module);
    }
    });