Main Page: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 11: | Line 11: | ||
== Basic Item Search == | == Basic Item Search == | ||
<html> | |||
<p>Have an item you want to look up? Enter the keywords in the form below to find what you need.</p> | |||
<p> </p> | |||
<form id="item-search" class="form-inline"> | |||
<div class="form-group"><label style="width: 100px; padding-left: 10px;" for="name">Name : </label> <input id="name" class="form-control" type="text" /></div> | |||
<div class="form-group"><label style="width: 100px; padding-left: 10px;" for="name">Type : </label><select id="type" class="form-control"> | |||
<option value="">All</option> | |||
<option value="light">Light</option> | |||
<option value="head">Head</option> | |||
<option value="face">Face</option> | |||
<option value="ears">Ears</option> | |||
<option value="neck">Neck</option> | |||
<option value="about body">Body</option> | |||
<option value="chest">Chest</option> | |||
<option value="arms">Arms</option> | |||
<option value="wrists">Wrist</option> | |||
<option value="hands">Hands</option> | |||
<option value="fingers">Rings</option> | |||
<option value="weapons">Weapons</option> | |||
<option value="waist">Waist</option> | |||
<option value="legs">Legs</option> | |||
<option value="knees">Knees</option> | |||
<option value="feet">Feet</option> | |||
</select></div> | |||
<button class="btn btn-success">Search</button></form> | |||
<h3>Results</h3> | |||
<div id="results"> </div> | |||
<script>// <![CDATA[ | |||
$(document).ready(function() { | |||
var $form = $('#item-search'), | |||
$name = $('#name'), | |||
$type = $('#type'), | |||
$template = $('#template'), | |||
$results = $('#results'); | |||
$form.submit(function(e) { | |||
e.preventDefault(); | |||
if ($name[0].value.length < 3) { | |||
return; | |||
} | |||
$results.html(''); | |||
$.get('//api.gamers411.net/nodeka/search/items/name/' + $name[0].value + ($type.val() != '' ? '/type/' + $type.val() : '') + '.html') | |||
.done(function(html) { | |||
$results.html(html); | |||
}); | |||
}); | |||
}); | |||
// ]]></script> | |||
</html> | |||
== Getting started == | == Getting started == |
Revision as of 18:46, 31 August 2020
Nodeka Wiki
Crossroad to a thousand help files...
What are you looking for?
Basic Item Search
Have an item you want to look up? Enter the keywords in the form below to find what you need.
Results
Getting started
- Consult the User's Guide for information on using the wiki software.
- Configuration settings list
- MediaWiki FAQ
- MediaWiki release mailing list
- Localise MediaWiki for your language
- Learn how to combat spam on your wiki