Internet Marketing Resources

Blog about anything under the moon…

Entries Tagged ‘Javascript’

How To Prevent Image Copying?

How to prevent people copying images from your website to their own? It’s not possible by any technical means (as far as I know) to absolutely stop people copying images from your website. If anyone know the image source (e.g. http://i675.photobucket.com/albums/vv114/xxx/xxx.jpg) and type to see in their web browser, then they can copy and save [...]

How To Open A New Window?

If you want to click a link to open a new browser window in HTML, copy this code <a href=”http://www.starzlet.com/Blog” target=”_blank”>Link To Me</a> and it will look like this Link To Me
If you want to open a new window in Javascript, just copy and paste this Javascript code into your blog or website :

function openWindow(theURL,winName,features)
{
[...]

How To Link A Picture?

How to link an image in a blog or website? This a common question being asked by newbies, and now I’m showing you how to link an image to a website or how can you get people to link to you.
Just copy and paste this Javascript into your blog or website :
Link to me by [...]

How To Hide Your Email Address?

How to hide an email address using Javascript from spammers? If your email address is xxx@starzlet.com, you will probably use <a href=”mailto:xxx@starzlet.com”>xxx@starzlet.com</a> as what I shown in the previous article. This simple code easily attracts spambots and you’d receive floods of spam emails like my case. *sigh*
Either you use a new email address (if possible [...]

How To Add An Email Link?

You can either use the contact form or add an email link in your blog or website for visitors to contact you.
So how to link to email? There are a few ways to go about doing it.
Option 1 : Indicate the email address like this e.g. xxx@starzlet.com on your blog or website. However, you are [...]