No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Try to read [Change image onclick with javascript](http://interestingwebs.blogspot.com/2012/09/change-image-onclick-with-javascript.html) . There is a simple example how to change image with click on button.
Easiest solution is to use one javascript function to show and hide. Example : [code=html]<a onclick ="javascript : ShowHide('HiddenDiv')" href="javascript:;" >Show/Hide</a> <div class="mid" id="HiddenDiv" style="DISPLAY: none" > This text was hidden </div> <script language="JavaScript"> function ShowHide(divId) { if(document.getElementById(divId).style.display == 'none') { document.getElementById(divId).style.display='block'; } else { document.getElementById(divId).style.display = 'none'; } } …
[QUOTE=pyarticles;390009]Hi, I posted some Python code on my blog at blogspot [URL]http://pyarticles.blogspot.com/[/URL] . However, it not display my code correctly. How can I do to solve this problem ? Thanks :) Eiwot[/QUOTE] Look [URL]http://interestingwebs.blogspot.com/2008/12/easy-way-to-put-code-snippets-in-blog.html[/URL] for help
The End.
Markweb