Skip to content

Instantly share code, notes, and snippets.

@darwingr
Last active October 9, 2015 02:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darwingr/a7236814b0f51bcf2476 to your computer and use it in GitHub Desktop.
Save darwingr/a7236814b0f51bcf2476 to your computer and use it in GitHub Desktop.
<!-- javascript and CSS for dropdown at the top -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j("#flip").click(function() {
$j("#panel").slideDown("slow");
});
});
</script>
<style>
#panel, #flip {
padding: 5px;
text-align: center;
background-color: #bdd9f6;
border: solid 1px #c3c3c3;
}
#panel {
padding: 50px;
display: none;
}
</style>
<!-- html page content below -->
<div id="flip"> Click for editing instructions</div>
<div id="panel">To edit your submission, please go to the top button bar and navigate to the step you wish to edit. If you are ready to submit, click on "Proceed" at the bottom of this page.<br />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment