Click here to Skip to main content
15,886,868 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want in my project when user going to navigate from one page to another page at that time user can not go Next Page , if the current page data is not fill up properly.user only can navigate to previous page not next page without fill up current page requirement.

HTML
<ul class="nav">
                <li ><a href="Home.aspx">Home</a></li>
                <li ><a href="Personal_Information.aspx">PersonalInformation</a></li>
                <li><a href="Educational_Information.aspx">Educational_Information</a></li>
                <li ><a href="Previous_Employment .aspx">Previous_Employment</a></li>
                <li ><a href="Submit.aspx">Submit</a></li>                
            </ul>


when user in "Educational_Information.aspx" page can not go to Next Pages Without Complete Current page requirement.also Can Go Previous Page.

How can i deactivate Nextpages Link in Jquery?
Please Tell me.
Posted

1 solution

Links don't support being "disabled"

http://stackoverflow.com/questions/10276133/how-to-disable-html-links[^]

Your best bet is to simply remove the links. Each page that generates the menu should know what the valid page options are and only show those options in the menu.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900