Прошу помощи

12
L
На сайте с 16.10.2014
Offline
108
#11

В большинстве редакторов есть функция вставки ифрейма

Купить автомобиль из США можно тут (https://us-car.com.ua)
H
На сайте с 20.03.2016
Offline
0
#12

Может кто то подсказать за что отвечает этот код ?

jQuery(document).ready(function(e) {

/////////////END EQUA HEIGHT ////////////////
(function($) {
$.fn.equalHeights = function() {
var maxHeight = 0,
$this = $(this);
$this.each( function() {
var height = $(this).innerHeight();
if ( height > maxHeight ) { maxHeight = height; }
});
return $this.css('min-height', maxHeight);
};
// auto-initialize plugin
$('[data-equal]').each(function(){
var $this = $(this),
target = $this.data('equal');
$this.find(target).equalHeights();
});
})(jQuery);
//jQuery('#vt_lbr').children().equalHeights();
/////////////END EQUA HEIGHT ////////////////
if(!jQuery('.form-group').children('label[class*="col-md-"]').length)
jQuery('.form-group').children('label').addClass('col-md-3 control-label');
if(jQuery('.form-group').children('div[class*="col-md-"]').length){
jQuery('.form-group').find('input:not([type="checkbox"],[type="radio"],[type="hidden"],[type="submit"]), select').addClass('form-control');
jQuery('.form-group').find('textarea').addClass('form-control');
}
if(jQuery('.form-group').children('div:not([class*="col-md-"])')){
jQuery('.form-group').children('input:not([type="checkbox"],[type="radio"],[type="hidden"],[type="submit"]), select').addClass('form-control').wrap('<div class="col-md-5" />');
jQuery('.form-group').children('textarea').addClass('form-control').wrap('<div class="col-md-9" />');
}
});
12

Авторизуйтесь или зарегистрируйтесь, чтобы оставить комментарий