Recent Edits
bozComplete is an unobtrusive inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box....
bozComplete is an unobtrusive inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses binary search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they _must_ have an id+.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:
<textarea rows='5' style='width:100%;'>div.autoSuggestions
{
font-size:10pt;
padding-left:1px;
position:absolute;
background:#fff;
z-index:5000
}
div.autoSuggestions ul
{
padding:0px;
margin:0px;
min-width:200px;
outline:1px solid #808080;
_border:1px solid #808080;
}
div.autoSuggestions ul li
{
list-style:none;
padding:2px;
}
div.autoSuggestions ul li
{
background:#fffffe;
}
div.autoSuggestions ul li.selected
{
background:#f4f4d9;
}
</textarea>
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses binary search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they _must_ have an id+.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:
<textarea rows='5' style='width:100%;'>div.autoSuggestions
{
font-size:10pt;
padding-left:1px;
position:absolute;
background:#fff;
z-index:5000
}
div.autoSuggestions ul
{
padding:0px;
margin:0px;
min-width:200px;
outline:1px solid #808080;
_border:1px solid #808080;
}
div.autoSuggestions ul li
{
list-style:none;
padding:2px;
}
div.autoSuggestions ul li
{
background:#fffffe;
}
div.autoSuggestions ul li.selected
{
background:#f4f4d9;
}
</textarea>
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
It uses binary boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support ...
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses binary boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they _must_ have an id+.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:
<textarea rows='5' style='width:100%;'>div.autoSuggestions
{
font-size:10pt;
padding-left:1px;
position:absolute;
background:#fff;
z-index:5000
}
div.autoSuggestions ul
{
padding:0px;
margin:0px;
min-width:200px;
outline:1px solid #808080;
_border:1px solid #808080;
}
div.autoSuggestions ul li
{
list-style:none;
padding:2px;
}
div.autoSuggestions ul li
{
background:#fffffe;
}
div.autoSuggestions ul li.selected
{
background:#f4f4d9;
}
</textarea>
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
<textarea rows='5' style='width:100%;'>div.autoSuggestions rows='5'>div.autoSuggestions
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they _must_ have an id+.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:
<textarea rows='5' style='width:100%;'>div.autoSuggestions rows='5'>div.autoSuggestions
{
font-size:10pt;
padding-left:1px;
position:absolute;
background:#fff;
z-index:5000
}
div.autoSuggestions ul
{
padding:0px;
margin:0px;
min-width:200px;
outline:1px solid #808080;
_border:1px solid #808080;
}
div.autoSuggestions ul li
{
list-style:none;
padding:2px;
}
div.autoSuggestions ul li
{
background:#fffffe;
}
div.autoSuggestions ul li.selected
{
background:#f4f4d9;
}
</textarea>
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they _must_ have an id+.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
If you want the autocomplete box to layer next to your input box, here are some suggested CSS rules by which you can do this:
<textarea rows='5'>div.autoSuggestions
{
font-size:10pt;
padding-left:1px;
position:absolute;
background:#fff;
z-index:5000
}
div.autoSuggestions ul
{
padding:0px;
margin:0px;
min-width:200px;
outline:1px solid #808080;
_border:1px solid #808080;
}
div.autoSuggestions ul li
{
list-style:none;
padding:2px;
}
div.autoSuggestions ul li
{
background:#fffffe;
}
div.autoSuggestions ul li.selected
{
background:#f4f4d9;
}
</textarea>
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
# +# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they they _must_ have an id+.) id.)...
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+.
# +# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they they _must_ have an id+.) id.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
# Include "the script":autocompleteScript +after including [[Prototype]]+. including+ [[Prototype]].
+# # Add the class 'autocomplete'...
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including [[Prototype]]+. including+ [[Prototype]].
+# # Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
# Include "the script":autocompleteScript +after including+ after including [[Prototype]].
# Include the line: Autocomplete.defaultSuggestTags...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript +after including+ after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Include the line: Autocomplete.defaultSuggestTags = '+alphabetized+ '*alphabetized* suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Limitations
* bozComplete does not support arbitrary capitalizations, only lowercase tags are supported currently. Uppercase tags will be lowercased.
* If you add autocomplete inputs after the page has loaded, you will now need to call Autocomplete.findTargets() to let Autocomplete know to search for new inputs. This has been changed for performance reasons.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive. "Try it out yourself.":http://sandbox.sourcelabs.com/autocomplete/
h2. To use bozComplete
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Include the line: Autocomplete.defaultSuggestTags = '*alphabetized* suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive.
h2. To use bozComplete
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Include the line: Autocomplete.defaultSuggestTags = '*alphabetized* suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
* [[boz]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively responsive.
h2. To use bozComplete
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Include the line: Autocomplete.defaultSuggestTags = '*alphabetized* suggest words';
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
# Add a line to the main javascript to set @window.onload = Autocomplete.init;@
# Include the line: Autocomplete.defaultSuggestTags...
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
h2. To use bozComplete
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Add a line to the main javascript to set @window.onload = Autocomplete.init;@
# Include the line: Autocomplete.defaultSuggestTags @var defaultSuggestTags = '*alphabetized* 'alphabetized suggest words'; words';@
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
h2. To use bozComplete bozComplete:
That's it.
h2. Additional capabilities
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
h2. To use bozComplete bozComplete:
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Add a line to the main javascript to set @window.onload = Autocomplete.init;@
# Include the line: @var defaultSuggestTags = 'alphabetized suggest words';@
That's it.
h2. Additional capabilities
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
To use bozComplete:
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Add a line to the main javascript to set @window.onload = Autocomplete.init;@
# Include the line: @var defaultSuggestTags = 'alphabetized suggest words';@
That's it.
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
h2. Projects using bozComplete
* [[SWiK]]
* [[Musika]]
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses...
» complete changebozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.
It uses boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support tested on [[IE]], [[Firefox]], [[Safari]] and [[Opera]], and optional term ranking.
To use bozComplete:
# Include "the script":autocompleteScript after including [[Prototype]].
# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: they _must_ have an id.)
# Add a line to the main javascript to set @window.onload = Autocomplete.init;@
# Include the line: @var defaultSuggestTags = 'alphabetized suggest words';@
That's it.
bozComplete also offers the capability to customize the list of words to use for a specific input form. To do this, include a hidden input, with the id equal to = 's'+id of the input to complete.
Additionally, bozComplete can order by a predetermined ranking. To use this feature, append a comma followed by a ranking number to each alphabetized autocomplete term.
To try this out, visit "the test page":http://sandbox.sourcelabs.com/autocomplete/. The test page offers a toggle for the number of search terms to complete on. An unlimited number of terms are supported by the script, however performance may suffer on slower machines if beyond 20,000 terms are used.
To download the script, "grab the source from here":autocompleteScript.
[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js
