//Показать весь сопроводительный текст
$('.js-feedback_showall').each(function() {
if ($(this).prev().text().length > 471) {
$(this).addClass("block");
$(this).prev().css({'max-height':'60px'});
}
});
$('.js-feedback_showall').click(function () {
if($(this).prev().css({'max-height':'60px'})) {
$(this).prev().animate({"max-height":1000},500)
} else {
// $(this).prev().animate({"max-height":60},500)
$(this).prev().css({'max-height':'60px'});
}
});
if(wrap.find('textarea').val() !== '') {
wrap.prev().find('.b-notepad__feedback-letter_title_icon').removeClass('fa-plus').addClass('fa-exclamation')
} else {
wrap.prev().find('.b-notepad__feedback-letter_title_icon').removeClass('fa-exclamation').addClass('fa-plus')
}
$('.js-received-comment').click(function(){
var wrap = $(this).parent();
var data = {
id: wrap.data('id'),
comment: wrap.find('textarea').val(),
action: $(this).data('action')
};
$.ajax({
type: "POST",
data: data,
url: "/notepad/receivedComment",
dataType: "json",
context: this,
success: function(res){
if(!res.error) {
if (data.action === 'save') {
//мой код
if(wrap.find('textarea').val() !== '') {
wrap.prev().find('.b-notepad__feedback-letter_title_icon').removeClass('fa-plus').addClass('fa-exclamation')
}
//
wrap.hide();
}
if (data.action === 'remove') {
//мой код
wrap.prev().find('.b-notepad__feedback-letter_title_icon').removeClass('fa-exclamation').addClass('fa-plus');
//
wrap.find('textarea').val('').end().hide();
}
}
}
});
});
window.addEventListener('DOMContentLoaded', function() {
if($('#company_city option:selected') || $('#company_cat option:selected')) {
var anchor = $('#city').offset().top;
$(document).scrollTop(anchor);
}
}
window.onload = function(){
if($('#company_city option:selected') || $('#company_cat option:selected')) {
var anchor = $('#city').offset().top;
$(document).scrollTop(anchor);
}
}
&::after
content: ''
position: absolute
z-index: 0
left: 20px
bottom: 0
width: 100vw
height: 43px
background-color: #e8e6e4
transform: skewX(-45deg)
location.hash == $('.js-answer-modal').data('key')
$('.js-answer-modal').data('key') - это кнопка, после нее идет модалка, которая вызывается при клике на данную кнопку
Как мне привязать хеш к data-key?