Creating a sliding form using jQuery. Problem is the form is sliding to a blank page. The page that it is suppose to be sliding to is stuck on the first page. Website is here…www.entrilab.com. No errors come up on when I inspect the element. Even with no errors could it be the function is still not calling? The function in question is below
$('#navigation').show();
$('#navigation a').bind('click',function(e){
var $this = $(this);
var prev = current;
$this.closest('ul').find('li').removeClass('selected');
$this.parent().addClass('selected');
current = $this.parent().index() + 1;
You have a few issues with your HTML. For starters you don’t have any
doctypedeclared for the page. Secondly you have a closingdivtag after you close thehtmltag. These are not going to fix the issue but just something to clean up the code.I am presuming that you want the confirm
fieldsetto be on the second screen. For that you need to chang your css as follows:Give that a go and see if that fixes your issues.