linkzorz

--> Current release (9.2) <--

Translate

Blogger tips&tricks

There won't probably be much of my own creations. I just made that page to list solution to problems and lack of features I ran into with Google blog.
However any lack of feature is easily beaten by fact that Google allows to post HTML/JS content, so I can do anything (realistic) I want.

1. How to create a spoiler or show-hide effect

Source: http://www.bloggersentral.com/2009/12/create-show-hide-or-peek-boo.html

Solution:

 VISIBLE CONTENT HERE  
 <div id="spoiler" style="display:none">   
 HIDDEN CONTENT HERE   
 </div>   
 <button title="Click to show/hide content" type="button" onclick="if(document.getElementById('spoiler') .style.display=='none') {document.getElementById('spoiler') .style.display=''}else{document.getElementById('spoiler') .style.display='none'}">Show/hide</button>  

2. Code tag, which I had to Google out for #1. >.<

Source: http://codeformatter.blogspot.com/

Far from perfect, but its copy&paste live on-line tool. I hoped for colored keywords, but I have not bothered to go beyond first search result.

No comments:

Post a Comment