как сопоставить data-shape-title с другим заголовком, и если заголовок страницы будет совпадать с data-shape-title, нужно активировать наведение.
https://www.archermech.com/completed-projects/ здесь мой сайт и https://extell.com/portfolio вот пример сайта.
jQuery('.fusion-portfolio-post').hover(function() {
var result = jQuery(this).find('.fusion-rollover-title a').html();
jQuery('.imp-shape-poly').each(function() {
var res = jQuery(this).attr("data-shape-title");
console.log(res);
if(res == result) {
alert("worked");
}
});
});
Я использую этот скрипт.