I hope someone could help me with this. Basically, I am using Jquery Step, "Vertical Steps Example" on http://www.jquery-steps.com/Examples
I am trying to duplicate 'next' and 'previous' buttons to sit both at the top and bottom of contents area because I have got quite a lot of texts and images in each step.
Could someone help in how to duplicate those buttons ? Example code I am using is below:
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft",
stepsOrientation: "vertical"
});
});
</script>
<div id="wizard">
<h2>Title One</h2>
<section>
<p>Content for Title One</p>
</section>
<h2>Title Two</h2>
<section>
<p>Content for Title Two</p>
</section>
</div>