├── docs ├── nd │ ├── Data │ │ ├── ClassHierarchy.nd │ │ ├── ImageFileInfo.nd │ │ ├── ImageReferenceTable.nd │ │ ├── ConfigFileInfo.nd │ │ ├── PreviousSettings.nd │ │ ├── IndexInfo.nd │ │ ├── PreviousMenuState.nd │ │ ├── FileInfo.nd │ │ └── SymbolTable.nd │ ├── Menu.txt │ ├── Topics.txt │ └── Languages.txt ├── styles │ ├── main.css │ └── 2.css ├── index.html ├── search │ ├── NoResults.html │ ├── GeneralL.html │ ├── GeneralE.html │ ├── GeneralF.html │ ├── GeneralS.html │ ├── FunctionsR.html │ ├── FilesJ.html │ ├── GeneralJ.html │ └── GeneralR.html ├── javascript │ └── searchdata.js ├── index │ ├── Functions.html │ ├── Files.html │ └── General.html └── files │ └── jquery-ba-replacetext-js.html ├── examples ├── donate.gif ├── config.php ├── index.php └── replacetext │ └── index.php ├── shared ├── SyntaxHighlighter │ ├── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── printer.png │ │ ├── wrapping.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── shThemeEmacs.css │ │ ├── shThemeMidnight.css │ │ ├── shThemeDjango.css │ │ ├── shThemeRDark.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeDefault.css │ │ └── shCore.css │ ├── scripts │ │ ├── clipboard.swf │ │ ├── shBrushPlain.js │ │ ├── shBrushDiff.js │ │ ├── shBrushJScript.js │ │ ├── shBrushPython.js │ │ ├── shBrushScala.js │ │ ├── shBrushJava.js │ │ ├── shBrushXml.js │ │ ├── shBrushRuby.js │ │ ├── shLegacy.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushVb.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushAS3.js │ │ ├── shBrushBash.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushSql.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPhp.js │ │ ├── shBrushCpp.js │ │ └── shBrushCss.js │ ├── test.html │ ├── src │ │ └── shLegacy.js │ └── LGPLv3.txt └── ba-debug.js ├── jquery.ba-replacetext.min.js ├── LICENSE-MIT ├── README.markdown └── jquery.ba-replacetext.js /docs/nd/Data/ClassHierarchy.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/nd/Data/ImageFileInfo.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/nd/Data/ImageReferenceTable.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | @import URL("1.css"); 2 | @import URL("2.css"); 3 | -------------------------------------------------------------------------------- /examples/donate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/examples/donate.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /docs/nd/Data/ConfigFileInfo.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/docs/nd/Data/ConfigFileInfo.nd -------------------------------------------------------------------------------- /docs/nd/Data/PreviousSettings.nd: -------------------------------------------------------------------------------- 1 | ( /srv/projects/jquery-replacetext 1 %/srv/projects/jquery-replacetext/docs HTML -------------------------------------------------------------------------------- /docs/nd/Data/IndexInfo.nd: -------------------------------------------------------------------------------- 1 | ( General Function File -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/help.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/magnifier.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/printer.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/wrapping.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/scripts/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/scripts/clipboard.swf -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/page_white_code.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-replacetext/master/shared/SyntaxHighlighter/styles/page_white_copy.png -------------------------------------------------------------------------------- /docs/nd/Data/PreviousMenuState.nd: -------------------------------------------------------------------------------- 1 | ( 5jQuery replaceText: String replace for your jQueries! 9/srv/projects/jquery-replacetext/jquery.ba-replacetext.js Index 2 | Everything general Files file Functions function -------------------------------------------------------------------------------- /docs/nd/Data/FileInfo.nd: -------------------------------------------------------------------------------- 1 | 1.4 2 | JavaScript 3 | /srv/projects/jquery-replacetext/jquery.ba-replacetext.js 1264559089 1 jQuery replaceText: String replace for your jQueries! 4 | /srv/projects/jquery-replacetext/jquery.ba-replacetext.min.js 1264559190 0 /srv/projects/jquery-replacetext/jquery.ba-replacetext.min.js 5 | -------------------------------------------------------------------------------- /jquery.ba-replacetext.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery replaceText - v1.1 - 11/21/2009 3 | * http://benalman.com/projects/jquery-replacetext-plugin/ 4 | * 5 | * Copyright (c) 2009 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function($){$.fn.replaceText=function(b,a,c){return this.each(function(){var f=this.firstChild,g,e,d=[];if(f){do{if(f.nodeType===3){g=f.nodeValue;e=g.replace(b,a);if(e!==g){if(!c&&/ 8 | Project Home, 9 | Documentation, 10 | Source 11 | 12 | $shell['h3'] = ob_get_contents(); 13 | ob_end_clean(); 14 | 15 | $shell['jquery'] = 'jquery-1.4.1.js'; 16 | //$shell['jquery'] = 'jquery-1.3.2.js'; 17 | 18 | $shell['shBrush'] = array( 'JScript' ); 19 | 20 | ?> 21 | -------------------------------------------------------------------------------- /docs/search/NoResults.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |