Popup Windows Resize and Scrollbar - Joomla! Forum - community, help and support
hi, stuck on trying fix size of popup window.
within link option of menu item have set following url:
which opens popup window correctly, if try resize window lets me change whatever size want, have fixed without being able resize.
also issue have 1 of popup windows text have takes whole screen size need add scrollbar, not sure on how this, advice on how can achieved.
if please help, appreciate it.
thanks in advance.
within link option of menu item have set following url:
code: select all
javascript:popupwindow('index.php?option=com_content&view=article&id=82', '100', '100', '701', '330',resizeable='no')
which opens popup window correctly, if try resize window lets me change whatever size want, have fixed without being able resize.
also issue have 1 of popup windows text have takes whole screen size need add scrollbar, not sure on how this, advice on how can achieved.
if please help, appreciate it.
thanks in advance.
what popupwindow? assume calls window.open? why not use:
javascript: window.open('index.php?option=com_content&view=article&id=82','',width=100,height=100,scrollbars=1)
that add scrollbars if content beyond window. resize out of luck. ie other browsers not allow this.
javascript: window.open('index.php?option=com_content&view=article&id=82','',width=100,height=100,scrollbars=1)
that add scrollbars if content beyond window. resize out of luck. ie other browsers not allow this.
Comments
Post a Comment