As a blogger when you want to host java script files, you want to get help from free .js hosting provider like google sites.But here the problem is bandwidth limitations.If you can host java script files into blogger you can get unlimited bandwidth for your .js files.
So if you want to host your .js files with unlimited bandwidth use the code below.
If you can't understand above code look at the example below.
This is the code when you host your java script file into another hosting account.
//
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;iif(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '';
summ = summary_img;
}
var summary = imgtag + '' + removeHtmlTag(div.innerHTML,summ) + '';
div.innerHTML = summary;
}
//]]>
Now you are done.
0 comments:
Post a Comment