Jquery form pagination

this is where the form www.myclean.com click the button to see the form in the next page, that is what i want to create ,how can i create that using something like this http://jsfiddle.net/Azxjt/ , but i want only one button and remove the pages below

That would seem to be as easy as removing a section of the script starting from this comment:


//start the index at 1

as well as the code from this comment:


//remove active state of pagination

Or, you can just hide that page section:


#page { display: none; }

ok i’ll try thank you!

im done getting the code i need thank you, now how can i use my own button?

That button is just a simple link, with CSS used to make it look nice 'n fancy.


a.next {
    background: #f36b06;
    display: block;
    width: 300px;
    float: left;
    margin: 10px 0 0 164px;
    text-align: center;
    clear: left;
    padding: 7px 13px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: white;
    text-decoration: none;
}

It’s created from this part of the code:


$("article:not(:last)").append('<a class="next" href="#">Next</a>');

yes sorry, because the button im gonna make has an image. sorry i forgot it’s css. thank you again. :slight_smile: THREAD CLOSED!