Thursday, June 23, 2011

Google to stop supporting IE7 in Google Apps

Google previously announced that it would no longer support IE6, yippee!! Now they have gone another step further and have released a statement:

"Beginning August 1, 2011, we'll support the current and previous major releases of Chrome, Firefox, Internet Explorer and Safari on a rolling basis. Each time a new version is released, we’ll begin supporting that version and stop supporting the third-oldest version."

ref: google support

Support for IE7 will be discontinued on August 1, 2011.

Monday, June 20, 2011

Css Shapes


Create a masterpiece by just using css and borders. You can create css triangles shapes by just using the border property. If you think of a block with a border 0f 20px around using different colours, the sides need to be on angles to slot together:

 

Now bring in the rectangle and you get a nice set of triangles
 


Using the rotatate and border-radius properties you can now have fun.

for a great collection of css shapes go to css-tricks.com

Wednesday, June 15, 2011

Javascript Frameworks and jQuery (Infographic)

A nice infographic detailing the numbers among the most popular Javascript frameworks. Also shows that version 1.3.2 is the most popular version of jQuery at the moment and that 64% of sites go for the unminified version of the script.



Javascript Frameworks and jQuery Infographic is brought to you by WebAppers.com

Tuesday, June 14, 2011

Latitude and Longitude

Here is a very handy site when trying to find the Latitude and Longitude of a location. The page uses the Google Maps API to find out accurate geographical coordinates (latitude and longitude) for any place on Earth.

Find latitude and longitude with Google Maps

Monday, June 13, 2011

Twitter Follow Button

Well another social button to add to your website, the Twitter Follow Button. Now if someone is signed into twitter they can instantly follow you using the new button.

Find it here

Friday, June 03, 2011

Windows 8



Microsoft showed the next version of its Windows OS, Windows 8. Looks good and anything has to be better than Vista, are microsoft finally going to be competing with apple. The most exciting thing is that the new platform will rely on HTML 5, Javascript and CSS to let developers build Web-connected applications for Windows 8 and Internet Explorer 10.

For all the features of Windows 8 read the article Previewing ‘Windows 8’

Wednesday, June 01, 2011

Javascript Subtraction without the extra decimals

I needed to do a simple javascript subtraction but forgot about the floating point. This puts a 1 "x" decimal places to the right of the decimal point. This is because computers work in binary rather than numbers.

To get around this I used the JavaScript round() Method and the code can be shown below:

<script language="Javascript" type="text/javascript">
<!--
var value1 = 25.00;
var value2 = 23.98;
var result = (value1 - value2) * 100;
var Myresult = Math.round(result) / 100;
document.write("My result is " + Myresult + " and no weird decimals");
//-->
</script>