Changing the style of a custom next button using JS
Best answer by Tom_1842
Hi KatjaT , the "jQuery(newnext).css({ opacity: 0.5 });" piece makes it so that the cloned Next button becomes lighter when it is clicked on, similar to what happens when the original Next button is clicked. Is this what you meant by fading out? If so, removing that line of code will stop the color change when the cloned Next button is clicked.
To make the cloned Next button constantly visible next to the original button, you can remove the "jQuery(next).css({"visibility":"hidden"});" piece of the code. This will make it so that both the original and the cloned button appear next to each other, like in the below:
You might also check out this post which touches on having the Next/Previous buttons included at the top of the screen.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Hope this resolves your query😊!!