ユーザーがオプションをクリックすると、fancybox がポップアップし、すべてのオプションが表示されます。ユーザーがリストされたオプションのいずれかをクリックすると、そのオプションに関連するコンテンツが同じポップアップに表示されますが、fancybox ポップアップはストレッチされません (高さの自動調整)。および幅) 新しい div content.Plz ヘルプの周り
<div class="modelbox" id="#options">Options</div> //when user clicks here a fance box appeares with few options,say three.
<div style="display:none" id="options">
<p onclick="$("#option1div").show()" >option 1</p> //when user clicks anyone one of these option.then the belov div opens on the fancy form. **problem is that.div opens but with the scrollbars and hight of the fancebox pop up form neve adjusted acorting to the new div content. help plz**
<p onclick="$("#option2div").show()">option 2</p>
<p onclick="$("#option3div").show()">option 3</p>
<div>
<div style="display:none" id="option1div"> large data here</div>
<div style="display:none" id="option2div"> large data here</div>
<div style="display:none" id="option3div"> large data here</div>