Subdomain Posts
JavaScript | 556 days ago
JavaScript | 560 days ago
JavaScript | 560 days ago
JavaScript | 568 days ago
Recent Posts
None | 29 sec ago
None | 2 min ago
Bash | 2 min ago
None | 2 min ago
PHP | 2 min ago
None | 2 min ago
None | 2 min ago
Prolog | 3 min ago
None | 3 min ago
None | 3 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By David on the 4th of Sep 2008 07:04:44 PM
Download |
Raw |
Embed |
Report
CmdUtils.CreateCommand({
name: "syno",
takes: {"input": noun_arb_text},
preview: function(pblock, input) {
jQuery.get( 'http://thesaurus.reference.com/browse/' + input.text, null, function( page ) {
var results = "";
var beginPos = page.indexOf("Main Entry:",0);
var endPos = 0;
while( beginPos != -1 )
{
//stringObject.indexOf(searchvalue,fromindex)
endPos = page.indexOf( "<\/table>", beginPos );
//stringObject.substring(start,stop)
results = results + "<br> <br>" + page.substring(beginPos,endPos);
beginPos = page.indexOf( "Main Entry:", endPos );
}
pblock.innerHTML = results;
});
}
})
Submit a correction or amendment below.
Make A New Post