Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Created March 29, 2011 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jookyboi/893055 to your computer and use it in GitHub Desktop.
Save jookyboi/893055 to your computer and use it in GitHub Desktop.
Get width of hidden elements.
var $table = $("#parent").children("table");
$table.css({ position: "absolute", visibility: "hidden", display: "block" });
var tableWidth = $table.outerWidth();
$table.css({ position: "", visibility: "", display: "" });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment