-
Changing HTML with JavaScript

Changing html with javascript is very simple but tricky, one can use InnerHTML javascript property to do that. Below I will show you how to do this step by step. <html> <body> <div id=”target”>will change this html</div> <script> document.getElementById(“target”).innerHTML=”here is the new html”; </script> </body> </html> Our goal is to change the html content of…
-
Top Hardware Technologies of 2013

3D printers A 3D printer is a limited type of industrial robot that is capable of carrying out an additive process under computer control. The 3D printing technology is used for both prototyping and distributed manufacturing. Google Glass It’s surprisingly simple. Say “take a picture” to take a picture. Record what you see. Hands-free. Even…
-
How to configure Eclipse for JBoss Application Server and MySQL Database

How to configure Eclipse for JBoss Application Server and MySQL Database To configure Eclipse with JBoss AS and MySQL Database you need Eclipse Indigo for J2EE developer , JBoss Application Server and MySQL Database connector . You can download those from the following links 1.Eclipse IDE for J2EE Developer : www.eclipse.org/downloads/ 2.JBoss http: //www.jboss.org/jbossas/downloads/ 3.MySQL…
-
How to find multiple occurance of a string in a target text
May be all of you know the pros and cons of strpos() function. Why we use this function? Actually sometimes we need to track the position of a search string in a long text or a paragraph. And so we use it. echo strpos($targetstring,$searched_string); And it it will always show the first occurance of the…
-
How to make Windows your default boot-able OS when dual booting
After installing Ubuntu along with Windows Ubuntu becomes the default boot-able Operating System. However You can make Windows the default boot-able OS . To do this you have to follow the following Commands : Step 1 .Boot with your Ubuntu OS Step 2. Open up a terminal and write : $ cd /boot/grub Step 3.…
