09.15.2011
Categories: jQuery | Add a Comment
This is a simple function to toggle text contents of an HTML element with jQuery. It should be easy to equip the toggleText methode with an array of strings. /* * jQuery.toggleText Plugin. * Copyright (c) saquery.com * Licensed under MIT - http://www.opensource.org/licenses/MIT */ $.fn.toggleText = function(txt){ return this.each(function(){ var _=$(this),_current=_.text(),_txt=txt; if ( _current === [...]
08.15.2011
Mr. abhilash posted a much better "how to" use Google Fonts in Your WordPress Blog on meabi.com for the WordPress Plugin WP Web Fonts. Nice to see that somebody cares, so thank you!
05.22.2011
Categories: | 55 Comments
Another form of a click counter... WP Click Info counts user clicks on all external links of your WordPress blog automatically. The counter methode does not need any annoying and irritating redirect Pages to count clicks on your external links. By default the Plugin sets optional all external links target="_blank" attribute and a nice Wiki [...]
09.04.2010
Categories: free | Add a Comment
Nice website voting service. Easy to implement. Just try it. Includes a lightweight WordPress Plugin.
09.04.2010
Categories: | Add a Comment
This Plugin allows your visitors to vote for your website. It is easy to integrate the widget into your web pages. The Plugin is using a service called topvotes.appspot.com which is powered by Google App Engine. There is no programming or HTML knowledge required to implement this voting widget into your page. The topvotes.appspot.com service provides [...]
08.15.2010
This jQuery Plugin extends a Html TextArea Element so that it can handle Tab and Alt+Tab keypress events. It can be usefull to edit and format HTML Code.
08.08.2010
jQuery.tmp Level 1 - Static Html Load a Template from static Html Javascript String. Html Source <div class="s1"></div> <div class="s1"></div> Javascript Source $('.s1').tmp('<span>Template from static Html...</span>'); Load a Template from static Html Javascript String with context data.
07.24.2010
Categories: english | Add a Comment
/*! * jQuery Sample Plugin * * http://saquery.com * */ (function(){ $.fn.setBorderStyle = function( settings ) { var _defaults = { 'border':'solid 1px black', 'color':'red' }, _config = $.extend(_defaults, settings), _ = $(this); return _.each(function(i,n) { $(this).css(_config); }); }; })(jQuery); $(function(){ $('div').setBorderStyle(); }) Test 1 : Invoke setBorderStyle with default settings. $('div').setBorderStyle(); Invoke "Test 1" [...]
07.22.2010
Categories: english | Add a Comment
This sample shows a good and well structured way to code your own WordPress Plugin in PHP. <?php /* Plugin Name: Your plugin-name Plugin URI: http://www.example.com Description: Your description. Version: 1.0.0.0 Author: Your name Author URI: http://www.example.com */ global $myWordpressPlugin; $myWordpressPlugin = new myWordpressPlugin(); class myWordpressPlugin{ function wp_head(){ echo '<!-- test -->'."\n"; } } add_action('wp_head', [...]
07.21.2010
Categories: | 3 Comments
A JQuery WordPress Plugin: This WordPress Plugin provides a very easy way to load jQuery and jQuery UI with the basic CSS theme layout from Google CDN without using your traffic. It turns your blog into a full featured JQuery and JQuery UI WordPress blog. Javascript example Code: function invokeDemo(){ $(this).parents('div:first').animate({ width: ['toggle', 'swing'], height: ['toggle', [...]