[jQuery] Dialog has no scrollbars

2009-03-04 Thread jtibbetts
Scrollbars refuse to appear on my dialog box. function LoadDialog (id) { $(body).append('div id=dialog/div'); $(#dialog).dialog( { title: 'Dialog', autoOpen: false, resizable: false, width: '525px', height: '500px' } ); $(#dialog).dialog(open).load(/in/content.php); }

[jQuery] Re: Cancel .toggle() when a link is clicked

2008-09-10 Thread jtibbetts
a') instead of $('#notoggle'). div id=toggle       Click here for more info       a id=notoggledo something/a  /div On Sep 9, 12:41 pm, jtibbetts [EMAIL PROTECTED] wrote: How do you stop .toggle() from toggling an object when a link (or any object) inside the object is clicked. Here's a quick

[jQuery] Re: Cancel .toggle() when a link is clicked

2008-09-10 Thread jtibbetts
.../div script Hope this helps!! On Sep 10, 10:07 am, jtibbetts [EMAIL PROTECTED] wrote: Unfortunately, adding return false to the link inside the toggle div doesn't stop the toggling. The return false just cancels the default behavior of the link (i.e. the href), but I need to cancel

[jQuery] Cancel .toggle() when a link is clicked

2008-09-09 Thread jtibbetts
How do you stop .toggle() from toggling an object when a link (or any object) inside the object is clicked. Here's a quick contrived example: div id=toggle Click here for more info a onClick=DoSomething();do something/a /div div id=infoblah blah blah.../div script $(#toggle).toggle(