View Single Post
Old 03-05-2015, 10:49 AM  
StinkyPink
It's all goooood.
 
Industry Role:
Join Date: Aug 2009
Location: The Hoe Stroll
Posts: 1,591
From the jquery page...

Event Handling

Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.

Code:
1 var hiddenBox = $( "#banner-message" );
2   $( "#button-container button" ).on( "click", function( event ) {
3   hiddenBox.show();
4 });
Not sure if this has anything to do with anything. I just literally was looking at it when I read the thread.
StinkyPink is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote