I could be looking at this completely wrong, and I'd normally just do this with jQuery, but the topic of Progressive Enhancement has sparked this up.
At the minute I have:
<button data-bind="click: moveNext"><a href="#anchorTwo">Next</a></button>
<section id="anchorTwo">
</section>
And moveNext (Knockout.js) will hide/show this function.
However, with Progress Enhancement, this is not possible. So I thought, stick it as an ActionLink and hide/show the section via this (I've just moved from Web Forms). Obviously an ActionLink has to have its own View/PartialView - so is this even possible via MVC?
Literally all I want is the code-behind to hide/show an element.