yinkkar (User)
Fresh Boarder
Posts: 2
|
|
darey u are the one (12/05/2010 07:39am)
|
Karma: 0
|
jQuery.noConflict();
function insert(input,msgid,cid,text) {
var content = decodeURI(text);
//content = document.getElementById(textarea).value;
var sitemid = 4;
// document.getElementById('msgtextout' + msgid).innerHTML = content ;
//var templatePath = document.postform.templatePath.value;
var content = encodeURIComponent(content);
jQuery.ajax({url:"index.php",
data : { qedit: content, Itemid : sitemid , option: "com_fbb" , func: "post" ,do:'editpostnow',id:msgid,catid:cid ,no_html: 1},
type: "POST",
beforeSend : function (req){
jQuery('#outmsg'+ msgid).show();
jQuery('#outmsg'+ msgid). html(" ");
},
success : function (req){
jQuery('#previewMsg' +msgid). html(req);
//alert(req);
input.value ='Success';
return;
}
});
}
darey i like ur strength
|
|