iframe - jQuery hiding an <li> title when using a slideToggle -
i have created iframe show login area or register area. used .slidetoggle show 1 frame while hiding other. trouble i'm having is, how hide 'register' title when login frame shown. right title shows below frame. thinking of doing if/else, don't know how word it. need title not show @ bottom of iframe. here code. in head of page.
<script type="text/javascript"> $(document).ready(function() { $('.open').click(function() { $('#login iframe#register').slidetoggle(300); $(this).toggleclass(close); }); $('.open2').click(function() { $('#login iframe#log').slidetoggle(300); $(this).toggleclass(close); }); }); </script>
and here of page navs.
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/main.css" type="text/css"> <link rel="stylesheet" type="text/css" href="css/iframe.css"> <script src="js/jquery-1.11.0.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('.open').click(function() { $('#login iframe#register').slidetoggle(300); $(this).toggleclass(close); }); $('.open2').click(function() { $('#login iframe#log').slidetoggle(300); $(this).toggleclass(close); }); }); </script> <title>kurdistan post::top stories</title> </head> <body id="home"> <div id="wrappper"> <div id="top"> <div id="hamicon"><img src="images/hamicon.gif" alt="hamburger icon dropdown menu"></div> <div id="language"> <ul id="languagenav"> <li><a href="#">kurdish</a></li> <li><a href="#">turkish</a></li> <li><a href="#">russian</a></li> </ul> </div> <div id="login"> <ul id="archivenav"> <li><a href="#">archive</a></li> <li><a href="#">subscribe</a></li> <li class="open2"><a href="#">log in</a></li> <iframe src="login.html" id="log" scrolling="no"></iframe> <li class="open"><a href="#">register</a></li> <iframe src="register.html" id="register" scrolling="no"></iframe> </ul> </div> </div> <div id="header"> <div id="datewrap" <p class="date"><time datetime="2014-04-26">april 26, 2014</time></p> </div> <div id="logowrap"> <h1 id="logo"><img src="images/kpost-logo.gif" alt="kurdistan post"></h1> </div> <div id="search"> <form id="searchfield"> <input name="q" placeholder="kurdistan post archive"> <input type="submit" value="go"> </form> </div> </div> <div id="main-menu"> <nav id="main-nav"> <ul> <li><a href="#">top stories</a></li> <li><a href="#">kurdistan</a></li> <li><a href="#">world</a></li> <li><a href="#">economy</a></li> <li><a href="#">analysis</a></li> <li><a href="#">columnists</a></li> <li><a href="#">commentary</a></li> <li><a href="#">technology</a></li> <li><a href="#">sports</a></li> <li><a href="#">women</a></li> <li><a href="#">life</a></li> </ul> </nav> </div>
Comments
Post a Comment