Sistr uses jQuery and works with version 1.3 or higher.
Download the latest version of jQuery and
click here to download the Sistr files.
To enable Sistr on your website, follow these simple steps:
In order to be able to use Sistr on your webpage you must reference 2 scripts.
One for the jQuery library and one for the Sistr jQuery plug-in.
Add this code snippet to your webpage:
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.sistr.js"></script>
Sistr will be directed to the right titles or text in your webpage by using a jQuery selector
as soon as your page has been loaded. On the result set of that selector you will have to call
the .sistr() function provided by the sistr.jquery.js plug-in.
Add this code to your HTML page and you're good to go.
$(document).ready(function() {
$("h1").sistr({
font: "Arial",
size: 22,
color: "#FFCC00"
});
});