Loading...
Copy code
Close
Permalink
Close
Please tell us why you want to mark the subject as inappropriate.
(Maximum 200 characters)
Report Inappropriate
Cancel
Private Message
From :
guest
To :
Subject :
Content :
Type the characters you see in the picture below.
Send
Cancel
From :
guest
To :
Subject :
Content :
Type the characters you see in the picture below.
Send
Update
Cancel
Feedback
Email ID
Subject :
Comments :
Send
Cancel
Private Message
Type the characters you see in the picture below.
Type the characters you see in the picture below.
Attach files
Desktop
Google Docs
Each Attachment size should not exceed 1.0 MB.
Max no of attachments : 3
Loading User Profile...
guest
Response title
This is preview!
Attachments
Publish
Back to edit
Cancel
(
)
Sign In
New to this Portal? Click here to
Sign up
You can also use the below options to login
Login with Facebook
Login with Google
Login with Yahoo
jQuery
Plugins
UI
Meetups
Forum
Blog
About
Donate
All Forums
Recent Posts
Log In
Search
jQuery
Search
jQuery Forum
Screen name:
evgsurf
evgsurf's Profile
4
Posts
7
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Ideas
Problems
Expanded view
List view
Private Message
Resizable + overflow:hidden does not work correct in chrome
[1Reply]
28-Feb-2011 04:44 AM
Forum:
Using jQuery UI
Hello I have problem at chrome browser,
I create div with style
overflow:hidden
I create second div iniside first with
overflow:auto
So as I understand it is not possible to scroll first div by mouse.
But I can do it if I call
resizable()
for first div and use chrome browser (Firefox does work right).
If I start text selection at second div and move mouse outside second and first divs I can scroll first div.
The problem is in addintions divs which we create at
resizable()
function
<div style="-moz-user-select: none;" unselectable="on" class="
ui-resizable-handle ui-resizable-e
"></div>
<div style="-moz-user-select: none;" unselectable="on" class="
ui-resizable-handle ui-resizable-s
"></div>
I do not see problem with
ui-resizable-n
or
ui-resizable-w
I do not have ideas how I can solve the problem.
see picture
code is here
<!DOCTYPE html>
<html>
<head>
<link type="text/css" href="css/start/jquery-ui-1.8.10.custom.css" rel="stylesheet" />
<link type="text/css" href="eiWinMan.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.10.custom.min.js"></script>
<script>
$(document).ready(function(){
$(".bigdiv").resizable();
});
</script>
<style>
.bigdiv {
position: absolute;
top:100px;
left:100px;
width:200px;
height:200px;
overflow:hidden;
}
.smalldiv {
position: absolute;
top:2px;
left:2px;
width:194px;
height:194px;
overflow:auto;
}
</style>
</head>
<body>
<div class="ui-widget ui-widget-header bigdiv">
<div class="ui-widget ui-widget-content smalldiv">
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla bla bla blabla bla<br>
</div>
</div>
</body>
</html>
Memory problem or how to unload pages
[2Replies]
18-Nov-2010 02:11 AM
Forum:
jQuery Mobile
Hello
In JQM style we can load pages dynamicly and it does work well.
But we can have another problem.
Web application can have many many pages.
So we load, load, load , load ... iPad is not so cool device as thinks billions users in the world. Really it is very slow.
At some moment we overload memory and device will be very slow.
So any ideas how to unload pages from the memory? Any stragy how to manage memory of web application?
Using "Loading" splash
[6Replies]
04-Nov-2010 07:39 AM
Forum:
jQuery Mobile
When I load some page from server and loading is to long I can see nice "Loading" splash.
Is it possibe to use this feature at my code (for exaple, I load some data via ajax) ?
Can not run script on loaded page
[6Replies]
03-Nov-2010 07:00 AM
Forum:
jQuery Mobile
Hello.
I have main page with
<ul data-role="listview" data-inset="true">
<li><a href="reports.html">Reports</a></li>
</ul>
When I "click" on the button I can load page reports.html by url site/#reports.html
Well. now I want to start some script in reports.html to build page with reports.
As I understand I have to use something like
$(document).ready(function() {
alert(1);
It does not work. It is not my mistake because if I load page by url site/reports.html, script works well.
I tried to move script at bottom of page without $(document).ready(function() {, but is does not work again.
How I can start script in loaded page?
Best regards
Evgeny
«Prev
Next »
Moderate user : evgsurf
Forum