Skip to content

Instantly share code, notes, and snippets.

@gsharp
Created November 14, 2011 01:53
Show Gist options
  • Save gsharp/1363064 to your computer and use it in GitHub Desktop.
Save gsharp/1363064 to your computer and use it in GitHub Desktop.
smsContentWindow
<!DOCTYPE html>
<ol style="float: left;">
<li>thing <div style="display: none;">content my cool content</div></li>
<li>thing <div style="display: none;">content my cool content 2</div></li>
</ol>
<div class="content" style="float: right; border: 1px solid black">
nothing here yet
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
<script type="text/javascript" charset="utf-8">
jQuery('li').click(function(){
jQuery('.content').text(jQuery('div', this).text());
});
</script>
@SeanPlusPlus
Copy link

stoked

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment