- Код: Выделить всё
[off]{TEXT}[/off]
<span class="offtopic">Оффтопик<span style="display:none">{TEXT}</span></span>
- Код: Выделить всё
.postbody .content .offtopic { display:inline-block; padding:1px 5px; border:1px solid #D8D8D8; border-radius:5px; color:#BB162B; cursor:pointer; font-size:0.9em; background:#fff; }
.postbody .content .offtopic:hover { text-decoration:underline; }
.postbody .content .offtopic span { display:none; }
- Код: Выделить всё
jQuery(function($) {
// offtopic bbcode
$(document).on('click', 'span.offtopic', function() {
$(this).after($(this).children('span').html()).remove();
});
});