السلام عليكم ورحمة الله تعالى وبركاته
اليوم صنعت لكم كود من فكرتي وهو لتضليل الاقتباس
ونوع الكود هو جافا سكريبت
صورة للكود :
http://im29.gulfup.com/2012-03-25/1332707149511.png
اليوم صنعت لكم كود من فكرتي وهو لتضليل الاقتباس
ونوع الكود هو جافا سكريبت
صورة للكود :
http://im29.gulfup.com/2012-03-25/1332707149511.png
الكود:
function selectquote(a)
{
// Get ID of quote block
var e = jQuery(a).closest('tr').next().find('.cont_quote')[0];
// Not IE
if (window.getSelection)
{
var s = window.getSelection();
// Safari
if (s.setBaseAndExtent)
{
s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
}
// Firefox and Opera
else
{
// workaround for bug # 42885
if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '<BR>')
{
e.innerHTML = e.innerHTML + ' ';
}
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
}
// Some older browsers
else if (document.getSelection)
{
var s = document.getSelection();
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
// IE
else if (document.selection)
{
var r = document.body.createTextRange();
r.moveToElementText(e);
r.select();
}
}
jQuery(function(){
jQuery('div.postbody td.quote').parent().prev().find('b').html('quote:
<a href="javascript:void()" onClick="selectquote(this)"><font
face="verdana" color="red"></font> تحديد الاقتباس </a>');
});