Skip to content

Instantly share code, notes, and snippets.

@krisives
Created September 16, 2013 18:17
Show Gist options
  • Save krisives/6584402 to your computer and use it in GitHub Desktop.
Save krisives/6584402 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
</head>
<body>
<div class="bar">
Bar
</div>
<script>
$(function () {
var bar = $('.bar');
console.log('Raw: ' + bar.css('width'));
var width = bar.css('width').replace('px', '');
console.log('Original ' + width);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment