Rajesh Tandukar

PHP, Wordpress, Joomla , jQuery , Mootools : Complete web solutions

6 June 2010 0 Comments

Mootools Map Password Strength

Mootools Map Password Strength is a simple mootools  1.11 class to check the password strength.

Easy to setup, no any extra settings required.

Download Mootools Map Password Strength

VN:F [1.8.8_1072]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.8_1072]
Rating: +1 (from 1 vote)
27 May 2010 1 Comment

Print selected content from a webpage

This is an alternate to my post Javascript Print Page Area . Try this.

<script>
function cmdPrint()
{
var windowsettings = ” tollbar=yes,location=no,scrollbar=yes,width=600,height=500,left=100,top=50″;
var printcontent=document.getElementById(‘printerContent’);
var popupcontroler = windo.open(“”,”",windowsettings);
popupcontroler.document.open();
popupcontroler.document.write(‘<html><head><title>Printer Dilog</title>);
popupcontroler.document.write(‘</title><body onload=”self.print()”><div align=”center”>’);
popupcontroler.document.write(printcontent);
popupcontroler.document.write(‘</div></body></html>’);
popupcontroler.document.close();

</script>
Wrap your webpage content that need to be print with an id “printerContent”
<div id=”printerContent”>This is a test print. This is a test print. This is a test print. This is a test print.</div>
<a href=”#” onclick=”cmdPrint()”>Print</a>

VN:F [1.8.8_1072]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.8_1072]
Rating: 0 (from 0 votes)
26 May 2010 1 Comment

Smiley Text Editor

Smiley Text Editor is a simple text editor with a limited features.  This is an inherited from Joomla JCommentes comment-editor.

Download Smileys Text Edito

VN:F [1.8.8_1072]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.8_1072]
Rating: 0 (from 0 votes)
29 April 2010 9 Comments

Customizing Joomla Calendar Setup

Joomla 1.5 has calendar-setup.js file to setup the joomla calendar as per your requirements.
You can customize jcalendar using a javascript callback functions “param_default”.
Here are some examples customizing your joomla calendar. [Read more..]

VN:F [1.8.8_1072]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.8_1072]
Rating: 0 (from 0 votes)
31 January 2010 2 Comments

Detect an AJAX Request in PHP

During Ajax request , using the browser like Firefox, the rquested url can be visible thoruhg console which further  can be run from the browser address bar. This can be prevent by PHP’s $_SERVER['HTTP_X_REQUESTED_WITH'] variable. [Read more..]

VN:F [1.8.8_1072]
Rating: 6.0/10 (2 votes cast)
VN:F [1.8.8_1072]
Rating: 0 (from 0 votes)