I am trying to figure out how to change a bootstrap navbar dropdown via ajax(without page refresh) after the user logs in. Thanks
Solution 1:
from the modal dialog after it appears from clicking the login/reg links, on login button click, you'd just do something like using jquery
$.ajax({ ..... success: { $('.dropdown').hide(); }
then show or append a log out link.
if you've never used jquery ajax, jquery ajax example
Post a Comment for "Change Navbar Login Dropdown To Logout Ajax"