» tagged pages
» logout

(Feed found, click Add Page to syndicate.) Error finding feed, please try again » Find feed title

A Blog Page allows you to add entries, for news or other time sensitive postings

(Login required to save to your tagged pages.)
(or Cancel)

Recent Edits

edit by alex

bozComplete

August 21, 2006

bozComplete is an unobtrusive inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box....

» complete change

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

Undo this change because:
edit by alex

bozComplete

August 10, 2006

Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...

» complete change

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

edit by alex

bozComplete

August 10, 2006

It uses binary boolean search and merge sorting for speed, javascript objects for code cleanliness, cross-platform support ...

» complete change

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

edit by alex

bozComplete

August 9, 2006

<textarea rows='5' style='width:100%;'>div.autoSuggestions rows='5'>div.autoSuggestions

» complete change

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

edit by alex

bozComplete

August 9, 2006

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 change

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'>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

edit by alex

bozComplete

August 9, 2006

# +# Add the class 'autocomplete' to any input boxes you wish to have autocomplete. (note: +they they _must_ have an id+.) id.)...

» complete change

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

edit by alex

bozComplete

August 9, 2006

# Include "the script":autocompleteScript +after including [[Prototype]]+. including+ [[Prototype]].

+# # Add the class 'autocomplete'...

» complete change

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

edit by alex

bozComplete

August 9, 2006

# Include "the script":autocompleteScript +after including+ after including [[Prototype]].

# Include the line: Autocomplete.defaultSuggestTags...

» complete change

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+ 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

edit by alex

bozComplete

August 9, 2006

Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...

» complete change

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.

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

edit by alex

bozComplete

August 9, 2006

* [[boz]]

[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js

» complete change

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.

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

edit by alex

bozComplete

August 9, 2006

Even on a relatively slow machine, bozComplete can handle choosing from over 50k completions while still remaining relatively...

» complete change

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.

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

edit by alex

bozComplete

August 9, 2006

# Add a line to the main javascript to set @window.onload = Autocomplete.init;@

# Include the line: Autocomplete.defaultSuggestTags...

» complete change

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

editing undone by scott

bozComplete

August 9, 2006
“asdf”
javascript autocomplete tagging library ajax
Undo this change because:
editing re-applied alex

bozComplete

July 15, 2006
[[GPL]]
[[User:alex|Alex Bosworth]]
Project Wiki
editing undone by 210.210.122.151

bozComplete

July 15, 2006
“undo”
[[GPL]]
[[User:alex|Alex Bosworth]]
Wiki Project
edit by alex

bozComplete

July 7, 2006

h2. To use bozComplete bozComplete:

That's it.

h2. Additional capabilities

» complete change

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 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

edit by alex

bozComplete

July 7, 2006

h2. Projects using bozComplete

* [[SWiK]]

* [[Musika]]

[autocompleteScript]http://sandbox.sourcelabs.com/autocomplete/autocomplete.js...

» complete change

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.

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

edit by alex

bozComplete

July 7, 2006
javascript autocomplete tagging library ajax
edit by alex

bozComplete

July 7, 2006
javascript autocomplete tagging library
Undo this change because:
edit by alex

bozComplete

July 7, 2006
[[GPL]]
[[User:alex|Alex Bosworth]]
Project Wiki
Undo this change because:
created by alex

bozComplete

July 7, 2006
The page was created.
bozComplete
Wiki

bozComplete is an inobtrusive autocomplete [[JavaScript]] library for autocompleting preset words in an input box.

It uses...

» complete change

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.

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

Undo this change because:
Username:
Password:
(or Cancel)