groups

name language licence
SearchInWindow JavaScript Other
JavaScript Compressor - JavaScript JavaScript GPL 2
Up2five.js JavaScript Other
jsPathto.js JavaScript Other
extracontent.jq.min.js JavaScript Other
sdSetHeight JavaScript Other
Rotating PageHeader JavaScript Other
Test for jQuery JavaScript Other

< 1 2 3 4 5 >



language: JavaScript
licence: Other

jsPathto.js

options: view full snippetsend to code collector
// jsPathto v0.0.2 07-17-09 09:52
// A nifty bit'o code to make use of RapidWeaver's %pathto()% syntax in javascript files.
// Assembled for your RapidWeaver developing pleasure by Adam Merrifield (http://www.seydoggy.com)
function rtrim ( str, charlist ) {
    charlist = !charlist ? ' \s\xA0' : (charlist+'').replace(/([\[\]\(\)\.\?\/\*\{\}\+\$\^\:])/g, '\$1');
    var re = new RegExp('[' + charlist + ']+$', 'g');
    return (str+'').replace(re, '');
}

trimFromPatha = "/jspathto.js";
jsPathtoa = rtrim(rwPathto, trimFromPatha);
trimFromPathb = "scripts";
jsPathto = rtrim(jsPathtoa, trimFromPathb);
	
(Continues...)