After I added a copy link inside my panel and clicked to open it, an automatic display:none was triggered.
To fix this issue in my jQuery code, I included the line: showme.style.display = "none";
. This allowed me to open the panel successfully, but now I'm unable to close it.
Does anyone have a solution for this problem?
Here is my link WITHOUT showme.style.display = "none";
:
Here is my link and here is my code WITH showme.style.display = "none";
:
<!DOCTYPE HTML><html lang="en"> <head> <meta charset="utf-8"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.0.js"></script> <style> /* Styles Go Here */ </style> <script type="text/javascript"> // JavaScript Functions Go Here </script> </head> <body> </body> </html>