<div class="slidecontainer">
<input field="slider1" type="range" min="1" max="100" value="-1" class="slider">
<label for="goal1">Interactive Neural Networks (1 hour)</label>
</div>
<div class="slidecontainer">
<input field="slider2" type="range" min="1" max="100" value="-1" class="slider">
<label for="goal2">Data Structures & Algorithms MIT (1 hour)</label>
</div>
Html can often be used to great effect in tiddlywiki however if you want to store your result, do what you normally do with html javascript, you need to use the widgets. The primary reason as I see it is the widgets honor the tiddlywiki refresh and relationships. Many of the widgets actually cater for html tags. Almost anything you would do in html is possible so I recommend widening your search in tiddlywiki.com or these forums.
If you find something you can't do ask us for it. The worst case is a plugin or macro can be built to do it.
The details tag works as does a plugin that gives us the <$details widget.
If Jeds answer was not what you were looking for, explain here what functionaly you are after and we can help.
Regards
Tony
<$range field="range1" min="1" max="100" default="1" increment="1"/> <$view field="range1"><$range field="range1" min="1" max="100" default="1" increment="1"/> <$view field="range1">
(notice the fix on the view widget) into a tiddler and tag it as $:/tags/ViewTemplate
then it will appear on every tiddler, and the motion will be smooth. Of course you do not want the
template to apply to every tiddler, so you will need to wrap your rang widget in a list widget thatspecifies some condition:
<$list filter="[all[current]tag[Test]]">
<$range field="range1" min="1" max="100" default="1" increment="1"/><$view field="range1"/>
</$list>
I don't understand what you mean in issue #3.
Good luck
There is also the range operator. Used in a list (wrapped by a button) you can set a field with an action widget and do a bulk set action.
Then once the existing tiddlers are standardised use a custom new tiddler button to create new ones to standard.
Regards
Tony