Good afternoon,
I have an issue on resizable div with overflow property : if you scroll down (or right), icon (in the bottom right corner) positions don't follow scrollbar.
This is a sample :
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>jQuery UI Resizable - Default functionality</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
- <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
- <script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
- <link rel="stylesheet" href="/resources/demos/style.css" />
- <style>
- #resizable { width: 150px; height: 150px; padding: 0.5em; overflow:auto;}
- #resizable h3 { text-align: center; margin: 0; }
- </style>
- <script>
- $(function() {
- $( "#resizable" ).resizable();
- });
- </script>
- </head>
- <body>
- <div id="resizable" class="ui-widget-content">
- <h3 class="ui-widget-header">Resizable</h3>
- sydsadsad sad sa re otz tj lkdsjflksajdsa jdsajewq jusjfdsylkfjdslkfjdslitrewoirjewpomdscposjfdsoi jfdslkfjdslk jfdslk jfdslkfjldskjflewi dsgf ztr zd
- </div>
- </body>
- </html>
Is it possible to modify this behavior ?
Thanks in advance for your answer