Ask HN: Better to use Javascript or CSS
1–5 of 5 posts
Re: Ask HN: Better to use Javascript or CSS
#2CSS animations can take advantage of hardware graphics acceleration and they render very nicely on mobile browsers.
So, my answer is: both.
Re: Ask HN: Better to use Javascript or CSS
#3I would have to agree with symmet, you need both. This way if a user doesn't have a recent version of Firefox, Google Chrome, Safari or Opera you can have jQuery to fall back on.
-You can use browser detection to conditionally enable jQuery scripts on page load. You can use Javascript/jQuery or a server-side script to detect exactly which browser is loading the page.
-You can also check out http://www.modernizr.com/. It adds classes to the html element which allow you to target specific browser functionality in your stylesheet.
Let me know if you need any help with that,
Good luck!
Karl
Re: Ask HN: Better to use Javascript or CSS
#4Hello there, I would have to agree with symmet, you need both. This way if a user doesn't have a recent version of Firefox, Google Chrome, Safari or Opera you can have jQuery to fall back on. -You can use browser detection to conditionally enable jQuery scripts on page load. You can use Javascript/jQuery or a server-side script to detect exactly which browser is loading the page. -You can also check out http://www.mo…