Копирование Картинок и смайлов в Постах по кнопке цитирования сообщения
В HTML в форму ответа
Код:
<script type="text/javascript"> var L2='<span class="fnka">'; $(".post-content img[alt]").each(function (){ var b=$(this).attr('alt');$(this).attr('alt',''); if( b.search(/^http:\/\//g)!=-1){b="[img]"+b+"[/img]"} else {if( b.search(/^:/)==-1) return true} var L1='<span style="display:none;"> '+b+'</span>'; $(this).wrap(L2+'</span>');$(this).after(L1);});//alert("A") $(document).ready(function(){ $(".post-box").mousedown(function(){ $(this).find(".fnka").children('img').hide(); $(this).find(".fnka").children('span').show();}); $(".post").hover(function () {} ,function(){var j=$(this).find(".fnka"); j.children('span').hide();j.children('img').show();});}); </script>