Where can I find the cheapest domain name provider in Malaysia?
Malaysian businesses usually look for domains which end with .my or .com.my
Here is a list of domain name providers and the price of the domains above, correct as at 20 March 2016. The winners will be Yeahhost and Ht2u for lowest prices for .my domain!
Prices are displayed in a registration-renewal format. e.g. If registration is RM50 but renewal is RM120, then it will be displayed as 50-120.
Pages - Menu
▼
Wednesday, February 24, 2016
Friday, February 5, 2016
How code for today's date?
<script type="text/javascript">
<!--
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
var monthNames = ["January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"];
var d = new Date();
document.write(monthNames[d.getMonth()] + " " + day + ", " + year);
//-->
</script>
Wednesday, February 3, 2016
Transparent png image Displays as White/Black background?
Sometimes when we display a transparent png image, the transparent part shows up as a white or even black background.
In order to fix this, insert these 2 lines of code into the img tag:
background-color: transparent;
border: none;