普通のリンクを別窓で開くようにしてtitle属性も変える

Ads

Result

jQuery

//rel="external"のあるa要素
$("a[rel*='external']").each(function(){
    //a要素にtarget="_blank"の追加やtitle属性など変更を加える
    $(this).attr({
        target:"_blank",
        title: ($(this).attr("title")) ? "New window: " + $(this).attr("title") : "Open in new window"
    });
});

html

<a href="/" rel="external" title="kachibito">Go kachibito.net</a>

via

www.sohtanaka.com


Warning: include(/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php): Failed to open stream: No such file or directory in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7

Warning: include(): Failed opening '/home/youhei0828/kachibito.net/public_html/wp-content/themes/cocoon-master/my-php/jquery-other-snippets.php' for inclusion (include_path='.:/opt/php-8.1.29/data/pear') in /home/youhei0828/kachibito.net/public_html/wp-content/themes/kachibito7_with_cocoon_child/functions-module/shortcode/add-post-myphp.php on line 7