можно ли это как-то исправить? я подозреваю, что нужно изменить позицию кнопки, потому прошу указать в вышеуказанном скрипте, какие параметры нужно изменить.
вот со всеми исправлениями
<!--Spoiler--> <script type="text/javascript"> function tag_spolier() {var FoundErrors = ''; var enterTITLE = prompt("Введите описание скрытого под спойлером текста", 'Спойлер'); bbcode('[spoiler='+enterTITLE+']','[/spoiler]');} $(function(){ $("div.quote-box > cite > input.spoiler-button").click(function(){ $(this).parents("div.quote-box").find("blockquote.quote-box").toggle("normal"); var a = $(this).attr('value');$(this).attr('value',$(this).attr('id'));$(this).attr('id',a); }); }); $('td#button-code').before('<td style=\'background-image:url("http://[b]ссылка[/b].ru/uploads/000a/a8/84/75107-1.png");background-repeat:no-repeat;background-position:center center;\' onclick="tag_spolier()"><img src="/i/blank.gif" alt="Спойлер" title="Спойлер"></td>'); $('div.post-content p').map(function () { text = $(this).html(); if(text.indexOf("[/spoiler]" ) != -1) { spoilerr = /\[spoiler=(.*?)\]([^`]*?)\[\/spoiler\]/gi $(this).html(text.replace(spoilerr, "<div class='quote-box' style='padding:1px;background: none;border: 0;'><cite style='width:100%;margin:0;'><input id='close' class='spoiler-button' style='width:140px;font-size:10px; margin:0; cursor: pointer; font-weight:bold' type='button' value='$1'></cite><blockquote class='quote-box' style='display:none; width:97%;border: 1px solid #88b5df;margin:0;'>$2</blockquote></div>")) } }); </script>