Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8188301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:51:46+00:00 2026-06-07T02:51:46+00:00

I have to modify site that is using jQuery’s ready handler, I wan’t to

  • 0

I have to modify site that is using jQuery’s ready handler, I wan’t to reuse code and not have to write it again, however I need to change the behaviour of original ready handler, the question is:

  • how to remove ready handler (to apply new one)?
  • or how to override existing ready handler (original has anonymous function used)?

best regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T02:51:48+00:00Added an answer on June 7, 2026 at 2:51 am

    Ok, apparently you can’t unbind the ready handler, to be precise, you can’t when the ready() is used but you can using the bind(‘ready’, handler) so instead of

    $(document).ready(handler);
    

    use

    $(document).bind('ready', handler);
    

    then whenever you want to change the existing event handler use:

    $(document).unbind('ready', handler);//when there is reference to the handler
    

    or

    $(document).unbind('ready');//to remove all handlers for ready event
    

    as I’ve recently found you can add the event namespace:) to only remove ready events in that namespace (i’ve peeked the jplayer code) as follows:

    var GD_EVENT_NAMESPACE = ".GrelaDesign";
    $document.bind('ready' + GD_EVENT_NAMESPACE, function(){ alert('ready'); });
    //later
    $document.unbind('ready' + GD_EVENT_NAMESPACE);//this will remove only specific events
    

    best regards

    p.s. I was searching extensively before asking here:) and soon after I’ve asked I’ve found on bing the answer:-)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to modify some code in a application I am working on that
We're building a site that will have very minimal code, it's mostly just going
I have a product admin web site that has been generated using ASP.NET Dynamic
I have to modify a WPF application written in C# that displays a complex
I have to modify SQL Server reports. It is not easy to modify directly
I found this PHP code in an app I have to modify... $links =
Have people noticed that if you modify the source of a shell script, any
I have a jquery function(This is not written by me anyway still I am
I'm on IIS 6 and I have an ASP.Net 4.0 site that's a single
I have a site that searches through a db and pages the results. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.