$.css() v. style.property (v6)

Revision 6 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<div id="testme">
</div>
<script>
  $testme = $('#testme');
  var cssString = "left:55%;top:28%;z-index:-1;margin-left:0%;";
  var TableCardAnimation = [];
  TableCardAnimation[0] = {
    left: '35%',
    top: '28%',
    zIndex: '-3',
    marginLeft: '0%'
  };
  TableCardAnimation[1] = {
    left: '45%',
    top: '28%',
    zIndex: '-2',
    marginLeft: '0%'
  };
  TableCardAnimation[2] = {
    left: '55%',
    top: '28%',
    zIndex: '-1',
    marginLeft: '0%'
  };
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
$.css()
$testme.css(TableCardAnimation[2]);
ready
style.property
$testme[0].style.cssText = cssString;
ready
$.attr()
$testme.attr('style', cssString);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.