How can I get the height of the content area in the jQuery UI tab bar? $ ('.ui-tabs-panel').height()clearly returns the height of the content area + the height of the tabs. I suppose there should be an easy way to get this dimension? So far my search on the Internet does not turn this answer.
('.ui-tabs-panel').height()
Any suggestions would be greatly appreciated!
Chris
You had everything right:
$('.ui-tabs-panel').height()
Only the content pane gets height; this does not include tabs. If you have done this, then:
$('.ui-tabs').height()
It will also contain the height of the tabs.
Source: https://habr.com/ru/post/1739627/More articles:Sorting vector of custom objects - javaHow to manage toolbars using mvvm and WPF - wpfExport data to Excel file with multiple sheets in ASP.NET - c #ASP.NET MVC route passes with format {ID} - {Slug} - asp.netConcurrent WCF Calls Through a Shared Channel - cachingВопрос оператора разрешения PHP - scopeWMI: editing the registry remotely - c #Why does this Rails with the name scope return empty (uninitialized?) Objects? - sqlС помощью Service install msi, есть ли способ заставить установщика повторно запрашивать пользователя, если учетные данные были введены неправильно - c#Does Python / Scipy have firls () replacements (i.e. Weighted, Least Square, FIR Filter Design)? - pythonAll Articles