Skip to main content

Activity

commented on jQuery LightBox Plugin Not Working
I see the lightbox is not up at this time. That’s unfortunate, I am also trying to figure out how to add jquery plugins to my site. Uploading them to theme>files>new has not worked for me. I have been adding my jQuery to ‘layout.html’ using the Aware Theme but still no luck.
posted 2014-10-01 18:56:21 -0700
commented on Can I use JavaScript and jQuery in my NationBuilder site?
I’m attempting to write a simple hide/show jQuery script. NB comes with jQuery, but I’m having trouble accessing it. Do I have to save this as a script.js file and upload it?
// OK so this part goes into the post.
Show Map
<div style="display: none">The Map
// but where do I put this part?

$( "button" ).click(function() {
  $( "div" ).show( "slow" );
});
</div>
posted 2014-06-12 18:47:14 -0700