This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//master function to hold all actions on slider | |
//HTML - you'll need an empty div with id=slider to hold the initiated control | |
$(function() { | |
$( "#slider" ).slider({ | |
value:1, //start pos | |
min: 1, | |
max: 7, //number of slides | |
step: 1, | |
animate: true, | |
change: function( event, ui ) { //run function each time the slider is used |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Textarea can be resized as required. Its just used to contain the feed --> | |
<textarea cols='150' rows='30'><xsl:copy-of select='/'/></textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Formatting a number with '#.##;#.##' will return the absolute value --> | |
<xsl:variable name="absoluteValue" select="format-number($originalValue,'#.##;#.##')"/> |
NewerOlder