Dan06 Posted December 2, 2008 Share Posted December 2, 2008 When a certain text is "clicked" a function is supposed to be called. Currently, when the text is clicked the function is not being called and I can't figure out why. Below is the html, css, and js. <div id="logout">Logout</div> body #logout{ position: absolute; top: 80px; right: 15px; cursor: pointer; } body #logout:hover{ position: absolute; top: 75px; right: 15px; font: bold; font-size: 14pt; color:#FF0000; cursor: pointer; } $("#logout").click(function() { logoutCheck(); }); Any thoughts? Link to comment https://forums.phpfreaks.com/topic/135241-jquery-click/ Share on other sites More sharing options...
KevinM1 Posted December 2, 2008 Share Posted December 2, 2008 When a certain text is "clicked" a function is supposed to be called. Currently, when the text is clicked the function is not being called and I can't figure out why. Below is the html, css, and js. <div id="logout">Logout</div> body #logout{ position: absolute; top: 80px; right: 15px; cursor: pointer; } body #logout:hover{ position: absolute; top: 75px; right: 15px; font: bold; font-size: 14pt; color:#FF0000; cursor: pointer; } $("#logout").click(function() { logoutCheck(); }); Any thoughts? What is logoutCheck supposed to do? Link to comment https://forums.phpfreaks.com/topic/135241-jquery-click/#findComment-704424 Share on other sites More sharing options...
Dan06 Posted December 3, 2008 Author Share Posted December 3, 2008 logoutCheck determines if session variables that were set during login are still active and if so, unsets and then destroys them, logging the user out of the website. Once the session variables are unset and destroyed, logoutCheck sends the user to the main page. Link to comment https://forums.phpfreaks.com/topic/135241-jquery-click/#findComment-705064 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.