function calc_size() { var percent = $(this).width() / $(document).width() * 100; return percent + '%'; } $(document).ready(function() { $('.MyClass').width(calc_size) });