Since i'm fancy of internet marketing, i always try to search for more information about it everyday. The definition of internet marketing could be say shortly is to earn money online. Many people have earn lots of money everyday without doing anything. That's the power of internet marketing. But it doesn't mean doing internet marketing is easy. There are many many people give up in the middle way when they don't see there results immediately....
Generation of internet marketing
Before i write this article, i always think what should i start to write first because there are lots of things i have learned from internet marketing. Since at first time i know the internet, i just wonder how the people have their own website? The answer had revealed from days by days when i try to search for more information through internet. Nowadays, these things are in my mind and everybody else also need to get more ideas on the internet...
How should we criticize people about their mistakes
When you live in a group of people, you will face lots of problems even on study, living or financial. You will need to ask for more advice for what you should do to solve any problem. For me, my life has changed so much since i started university. That's because i have to live with lots of poeple from different place and most of them don't ever get along 100%. So i have to learn how to solve...
java script - how to prompt value
<script language="javascript">
var a,b,sum,multi;
a=prompt("enter a: ")
b=prompt("enter b: ")
sum=a+b;
multi=a*b;
document.write("sum="+sum);
document.write("multiply="+multi);
...
java script - how to send parameters from Form of HTML to java script
there are two ways that you can send parameters from for of HTML to java script
1.
java script
function count(form)
{
var a=eval(form.number1.value);
var b=eval(form.number2.value);
//get parameters from form
}
-HTML part
<input type=text name=number1>
<input type=text name=number2>
<input type=Button name=submit onClick=count(this.form)//you send the even on click to the function count at java script
2.
Java script
function...
Subscribe to:
Posts (Atom)