Quote:
Originally Posted by swissknife
Is it possible to have it run complettly on the own server and not using parts from yours? ( the script )
|
Obviously we can do this..
Step1:upload the attachment file in your forum directory...
Step2:then you need to edit one template...
go to:
Styles & Templates>Style Manager>edit template Option>nazia_header
Replace the
nazia_header with the following code..
Code:
<script type="text/javascript" src="clientscript/jquery-1.1.3.1.pack.js"></script>
<script type="text/javascript">
$(function(){
$("#inputthreadtitle").bind("blur", function(){
var value =$(this).val();
$('td#similarthreadcheckcontent').html('<img src="$stylevar[imgdir_misc]/13x13progress.gif" />');
$.ajax({
type: "GET",
url: "ajax.php",
data: "do=getsimilarthreads&title="+value,
success: function(msg){
$('td#similarthreadcheckcontent').html(msg);
}
});
});
});
</script>
All is done

Enjoy....