Click here to Skip to main content
15,884,986 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Regular Expression Pin
AspDotNetDev24-Jan-13 14:09
protectorAspDotNetDev24-Jan-13 14:09 
QuestionHow to put clipboard data into TextBox Pin
Ravindra Bisen10-Jan-13 0:02
Ravindra Bisen10-Jan-13 0:02 
AnswerRe: How to put clipboard data into TextBox Pin
J4amieC10-Jan-13 2:39
J4amieC10-Jan-13 2:39 
AnswerRe: How to put clipboard data into TextBox Pin
Ravindra Bisen14-Jan-13 21:50
Ravindra Bisen14-Jan-13 21:50 
GeneralRe: How to put clipboard data into TextBox Pin
itzzmearun29-Jan-13 20:18
itzzmearun29-Jan-13 20:18 
GeneralRe: How to put clipboard data into TextBox Pin
DaveAuld31-Jan-13 2:56
professionalDaveAuld31-Jan-13 2:56 
QuestionjQuery: live() function Pin
Phanindra2619-Jan-13 0:27
Phanindra2619-Jan-13 0:27 
AnswerRe: jQuery: live() function Pin
J4amieC9-Jan-13 0:39
J4amieC9-Jan-13 0:39 
They hide that sort of information in the documentation[^], the little buggers!

Use of the .live() method is no longer recommended since later versions of jQuery offer better methods that do not have its drawbacks. In particular, the following issues arise with the use of .live():

    jQuery attempts to retrieve the elements specified by the selector before calling the .live() method, which may be time-consuming on large documents.
    Chaining methods is not supported. For example, $("a").find(".offsite, .external").live( ... ); is not valid and does not work as expected.
    Since all .live() events are attached at the document element, events take the longest and slowest possible path before they are handled.
    On mobile iOS (iPhone, iPad and iPod Touch) the click event does not bubble to the document body for most elements and cannot be used with .live() without applying one of the following workarounds:
        Use natively clickable elements such as a or button, as both of these do bubble to document.
        Use .on() or .delegate() attached to an element below the level of document.body, since mobile iOS does bubble within the body.
        Apply the CSS style cursor:pointer to the element that needs to bubble clicks (or a parent including document.documentElement). Note however, this will disable copy\paste on the element and cause it to be highlighted when touched.
    Calling event.stopPropagation() in the event handler is ineffective in stopping event handlers attached lower in the document; the event has already propagated to document.
    The .live() method interacts with other event methods in ways that can be surprising, e.g., $(document).unbind("click") removes all click handlers attached by any call to .live()!

QuestionGoogle+ login on my website Pin
marcbase8-Jan-13 11:16
marcbase8-Jan-13 11:16 
AnswerRe: Google+ login on my website Pin
Sandeep Mewara8-Jan-13 17:45
mveSandeep Mewara8-Jan-13 17:45 
QuestionQuestion Pin
nth926-Jan-13 6:25
nth926-Jan-13 6:25 
AnswerRe: Question Pin
Richard MacCutchan6-Jan-13 6:32
mveRichard MacCutchan6-Jan-13 6:32 
AnswerRe: Question Pin
Thomas Daniels6-Jan-13 7:13
mentorThomas Daniels6-Jan-13 7:13 
AnswerRe: Question Pin
J4amieC8-Jan-13 0:52
J4amieC8-Jan-13 0:52 
AnswerRe: Question Pin
Keith Barrow8-Jan-13 1:30
professionalKeith Barrow8-Jan-13 1:30 
QuestionSharepoint - Aggregate lists with JavaScript Pin
garfield1853-Jan-13 3:38
garfield1853-Jan-13 3:38 
QuestionBrowser Back Button Pin
tiger1463-Jan-13 1:58
tiger1463-Jan-13 1:58 
AnswerRe: Browser Back Button Pin
Keith Barrow3-Jan-13 3:03
professionalKeith Barrow3-Jan-13 3:03 
GeneralRe: Browser Back Button Pin
tiger1467-Jan-13 23:19
tiger1467-Jan-13 23:19 
GeneralRe: Browser Back Button Pin
Keith Barrow8-Jan-13 1:41
professionalKeith Barrow8-Jan-13 1:41 
AnswerRe: Browser Back Button Pin
Sandeep Mewara4-Jan-13 2:55
mveSandeep Mewara4-Jan-13 2:55 
AnswerRe: Browser Back Button Pin
twseitex8-Jan-13 6:56
twseitex8-Jan-13 6:56 
AnswerRe: Browser Back Button Pin
Anjum.Rizwi15-Jan-13 21:20
professionalAnjum.Rizwi15-Jan-13 21:20 
AnswerRe: Browser Back Button Pin
vinodkumarnie18-Jan-13 22:33
vinodkumarnie18-Jan-13 22:33 
AnswerRe: Browser Back Button Pin
Deepak Kr17-Feb-13 22:26
Deepak Kr17-Feb-13 22:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.