1
vote
3answers
100 views
Is there a native Javascript implementation of jQuery’s document.ready()?
$(document).onload()
it's internally implemented by window.onload event
then what about
$(document).ready()
what's the native …
0
votes
4answers
143 views
Is event bubbling supported by all browsers?
jQuery uses event bubbling strategy to handle events.
And it claims to be cross browser,
but is "event bubbling" supported by all browsers?
There is another strategy: event …
0
votes
1answer
39 views
event handling mechanism of browsers
The DOM standard that eventually
developed thus speciied that both
strategies should be used; irst the
event is captured from general to
speciic, and then the event bubbles …
1
vote
1answer
73 views
how to use jQuery to show up a non-modal dialog?
Here is a plugin for block dialog:
http://malsup.com/jquery/block/#dialog
But what I need is a non-block dialog. …
-1
votes
5answers
188 views
lightest non-modal dialog with jQuery?
Here is a demo:
http://jqueryui.com/demos/dialog/
But it's too huge for me.
There are 2 thousand lines include …
1
vote
2answers
58 views
how to get event coordinate with jQuery?
<a id="clickme">here</a>
when I click on the link,I want to get the coordinate where click happens.
how to do that with jQuery?
…
1
vote
2answers
142 views
how does jQuery implement get elements by class name?
There is no such a "getElementsByClass" function in javascript,
then how does jQuery manage to do that?
Looping all elements will be too less efficient.
BTW,how to specify c …
0
votes
1answer
123 views
how to hide all right siblings with jQuery?
$(this).parent().next().css('display','none');
The above only hides the sibling right next to the current one.
If there are multiple ones,will fail.
…
1
vote
2answers
28 views
how to know whether “.target2” is applied to a jQuery object?
<a id="test" class="target1 target2">test</test>
How to know whether $("#test") has applied .target2 or not?
…
1
vote
4answers
26 views
Can someone provide a tabbed view plugin for jQuery?
Should be light in size and have an acceptable UI.
…
0
votes
4answers
122 views
How to pop up a hint diglog when focusing on an input like the following page with jQuery?
http://www.resumebucket.com/signup
Is there a ready plugin to implement this?
Should not be big in size.
…
2
votes
3answers
70 views
Is it possible to implement the effect of turning pages of a book with jQuery?
Or is there a ready plugin that can achieve this?
…
-1
votes
2answers
40 views
How to implement minimized view of a form inside a div with jQuery?
By default shows a minimized view inside a div,
when user click on the div,the form pop up for user to edit.
How to implement this?
Or is there a ready plugin to achieve this with jQuery? …
0
votes
3answers
72 views
how to implement web page mirror with jQuery?
Put all contents on another web page into a fixed size div.
How to achieve this?
…
7
votes
15answers
330 views
