Skip to content
/* URLがあったら自動でリンク化 */ jQuery(".simcal-event-details").each(function(){ var html = jQuery(this).html(); var linked = html.replace(/(https?:\/\/[^\s]+)/g, '$1'); jQuery(this).html(linked); });