Cognizant Outlook configuration
1. Open the Mail option in Control Panel – if you’re running 64-bit, please go to Additional Options and select “View 32-bit Control Panel Items” to uncover the Mail option. 2. Click on E-mail...
Discover the new direction...
1. Open the Mail option in Control Panel – if you’re running 64-bit, please go to Additional Options and select “View 32-bit Control Panel Items” to uncover the Mail option. 2. Click on E-mail...
Create a Email template with HTML and save it on your desired place. 1. Open outlook hit Alt+F11. 2. Insert a Module. 3. Copy Paste the below code and replace the html path. Sub...
ASCII Value Browser View ASCII Value Browser View ASCII Value Browser View 33 ! 34 “ 35 # 36 $ 37 % 38 & 39 ‘ 40 ( 41 ) 42 * 43 +...
Step – 1 Run the server in available ports. You can specify 4501, 5400, 8080, etc… Open the CRXDE editor to start creating the website. The default folder shown is apps, etc, libs.
Keyboard shortcuts are a takes major role in operating systems, the same can be applied for any website. This can be achieved by using the ‘accesskey’. This allows the user to jump to a...
Adobe CQ5 admin panel created with the help of EXT Js JavaScript library. The complete WCM built with EXT Js. EXT Js xtypes are used as CQ5 input types in widgets. Here i have...
Recently i just gone through this excellent script for png fix for ie6, even png images declared in css background. All you have to do is add these below to lines between tags. <!–[if...
Write the below function first: jQuery.fn.fadeToggle = function(speed, easing, callback) { return this.animate({opacity: ‘toggle’}, speed, easing, callback); }; After that you can do as usual like: $(“.main”).click(function () { $(“.child”).fadeToggle(“slow”); });
Trim your .php extension in your web application using .htaccess RewriteEngine on RewriteRule ^$ index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)/$ $1/index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)$ $1.php