Tagged Questions
The unbind tag has no wiki summary.
7
votes
2answers
3k views
How do I “rebind” the click event after unbind('click')?
I have an anchor tag <a class="next">next</a> made into a "button". Sometimes, this tag needs to be hidden if there is nothing new to show. All works fine if I simply hide the button with ...
6
votes
2answers
126 views
Unbinding a name referenced by an enclosing scope
From the Python Language Reference (v 3.1, see here - http://docs.python.org/py3k/reference/executionmodel.html#naming-and-binding ):
It is illegal to unbind a name referenced by an enclosing ...
5
votes
1answer
284 views
Unbinding in jQuery
If an element is removed from the page, does it automatically unbind? Or is this a scenario in which one ought to unbind using jquery's unbind?
I assume it's done automatically...
4
votes
3answers
64 views
Unbind hover event on a set of img
I have a problem with a set of images. My aim is to show an related-image when you hover a thumbnail, and hide it when you roll out the image. The problem is that I need to put an delay() on the hover ...
4
votes
6answers
342 views
Passing jQuery .click() a function as a variable
I'm working with a tabbed interface and have the following jQuery function set up to handle the click events of my tabs.
$(document).ready(function () {
$('a#foo').click(function() {
...
3
votes
2answers
330 views
Jquery: Small bind hover/unbind snippet of code, few lines long, don't know what's wrong
I've created DIV.cb-toggle, when the user hovers over this div, it animates to Orange, when they hover off of this div, it animates back to gray, when the user clicks this div, it animates to blue, ...
3
votes
1answer
650 views
jQuery unbind Live/Delegate events with namespace
I'm trying to unbind a live event (have tried with .live and with .delegate).
When I want to unbind it I have 3 different options: unbind "click", unbind "click.namespace1" or unbind ".namespace1". ...
3
votes
1answer
2k views
Jquery, unbinding mousewheel event, then rebinding it after actions are completed?
I've been struggling with this for a little while now.. I am using this code to monitor the mousewheel so it can be used for scrolling with a slider that I have.. however, it has an issue where the ...
3
votes
4answers
839 views
remove/unbind hover on anchors
html
<a href="home.html">Home</a>
css
a {
color: blue;
}
a:hover {
color: red;
}
now as you can see <a> now would be color red on hover.
Question
How do I remove hover ...
2
votes
1answer
35 views
Window won't open again after closing - unbind
Im having a button to open a popup-windwow. By clicking on itself again, the popup-window should close (this one works). But after closing it is not possible to reopen the window.
How can I fix this ...
2
votes
1answer
130 views
Unbind/bind vs. delegate in jQuery: Which is the best solution?
I have jQuery code that handles unbinding and binding event handlers to elements that are dynamically added to the page. The code has a wrapper function that unbinds existing handlers from elements ...
2
votes
2answers
85 views
Unbind special keypress event
I've got a question regarding jQuery keypress events. I've got the following (working) code:
$(document).bind('keypress', function(event) {
if ($('#myDiv').is(':visible')) {
if ...
2
votes
3answers
84 views
bind and unbind problem for secondly click
There are my codes:
Jquery
$(function() {
$("#evtTarget").bind("mouseover",highlighted);
$("#evtTarget").bind("mouseleave",highlighted);
...
2
votes
2answers
136 views
jQuery click event - first click makes ajax call, following clicks toggle
I have an anchor that when clicked makes an ajax call to load some html into a div and then load a script. I want to unbind that event after the first click, and replace it with another click event ...
2
votes
5answers
127 views
jQuery question on unbind
Can i use jQuery unbind() with live()
e.g.
$(".content_media").unbind("touchstart").live("touchstart",function(){....});
If yes, what exactly does it mean? Basically I want to understand what ...
2
votes
1answer
181 views
What can make jQuery's unbind function not work as expected?
Have a look at the following code (additionally, you will need jquery.js, jquery.viewport.js and jquery.scrollTo.js).
The behaviour I would expect from this script is that whenever I scroll the page, ...
2
votes
2answers
147 views
Bind & Unbind… how to bind again when this function finished?
http://jsfiddle.net/3NRsd/
var foo = $("div").bind("click", function() {
$("div").animate({"height" : "500px"}, 2000);
$("div").animate({"height" : "50px"}, 2000);
$("div").unbind();
...
2
votes
1answer
159 views
bind / unbind on timer not working in jquery. Will unbind but reactivating button fails
I have written some jquery in which I would like after the user clicks a button it deactivates for the duration of the animation then activates again. I have tried using call backs from the animation ...
2
votes
1answer
37 views
jQuery's (ui) general approach to unbinding events?
It's a small question yet important.
Should I run .unbind('click') before doing e.g. button.click(... ?
Basically, if there's an event defined for a control, am I supposed to unattach it before ...
2
votes
4answers
970 views
Disable anchor tag if href is Empty in ASP.NET
I have an ASP.NET Menu which generates many anchor tags when rendered.
My requirements were
to prevent postback if href or an
anchor tag is "" or "#".
to make the cursor not to show the
hand
...
2
votes
1answer
181 views
jQuery unbinding a large number of events
I'm writing a program with two keyboard modes using jquery.hotkeys.js, I'm seeing some slowdown and flashing when unbinding all keydown events. Is there a better way to do this?
function bindAll() {
...
2
votes
3answers
152 views
click events issue in jquery
I don't know if the title explain this situation well. Below is a code i wrote to create div elements when the button is pressed. Then By clicking on any of the created divs, we can change the div ...
2
votes
1answer
835 views
Unable to unbind the window beforeunload event in Jquery
I have a page where the user can drag and drop objects and save them as an image.When a user navigates away from the page, the event beforeunload is fired. Now, this happens every time. What i want to ...
2
votes
4answers
1k views
JQuery: How to unbind a specific event handler
Code:
$('#Inputfield').keyup(function(e)
{
if(e.which == 13)
{
functionXyz();
}
else
{
...
2
votes
1answer
2k views
how to unbind all event using jquery
i can use this code to remove click event,
$('p').unbind('click')
but , has some method to remove all event ?
has a method named unbindAll in jquery ?
thanks
2
votes
3answers
588 views
Disable/unbind click on active items, rebind click when inactive
I have a left-positioned navigation that shows/hides content on the right. Currently, when you click a link, it fades in the corresponding content on the right and adds an active class to that link. ...
2
votes
2answers
401 views
Unbind a div and then bind it later
$('.tab').click(function() {
$(this).unbind("click");
var classy = $(this).attr("class").split(" ").splice(-1);
var ihtml = $('.content.'+classy).html();
$('#holder').html(ihtml);
...
1
vote
5answers
65 views
disable click event handler for a duration of time
I've already looked at similar questions but the answers provided involve buttons and not div elements. When I click the div element with id click, the click event handler is disabled by unbind() and ...
1
vote
2answers
30 views
How can I return click again after disabling it?
How can I return click again after disabling it?
For instance, when the page is loaded I want to turn off all clickable button on the menu,
$(".menu > ul > li > a").click(function(){return ...
1
vote
2answers
193 views
How to unbind jquery.scrollTo plugin?
I use the jquery scrollto plugin on this page : http://tinyurl.com/3l49ccu)
When i resize the window, the scroll is not working anymore because the "offset" setting changed. I would like to redefine ...
1
vote
4answers
126 views
javascript unbind dom events
I'm working on a web framework and am trying to build XSS prevention into it. I have set it up so it will escape incoming data for storage in the database, but sometimes you want to save html that the ...
1
vote
3answers
82 views
Unbind a jQuery Plugin?
I have a plugin like
$.fn.mycoolplugin
which binds mousemove to the document like
$(document).("mousemove", function() {
//bunch of stuff
});
after you call the function on a selector
...
1
vote
3answers
242 views
Jquery rebind click after unbinding
I've got an element inside a div which has a click event associated to it. Both click events work fine, except they both fire at the same time.
When I click on the inner element to disable the parent ...
1
vote
2answers
86 views
jQuery: multiple selectors - unbind click from all selectors with $(this)?
quick and probably dumb question. I have the following situation:
I select multiple elements and bind a click handler to them. After they are clicked I want to remove the handler and unbind the click ...
1
vote
3answers
203 views
unbind submit event in AJAX callback
If a checkbox is not checked, I alert and prevent form submission (either submit button click or Enter) with bind false. I need to unbind in the AJAX callback, but am unable to do so.
HTML:
...
1
vote
7answers
402 views
jQuery Allow only one click before .ajax()
I am trying to allow a button to be clicked only once and then some data be submitted via ajax. The problem I am facing is that a user can click 50x and the data is POST submitted each time ?
...
1
vote
1answer
190 views
Multiple $(document).ready(function(){})
Hi
Ehsan Here
I have recently started workin in jquery. and now when i am working on an project where i am using ajax function and loading the same library(i have written) again and again. and due to ...
1
vote
2answers
174 views
Linux socket doesn't close
i have a problem. I run a TCP server in linux. I close the socket by close(socket) call. But when I try to rebind again, bind call fails with errno 98 => port is already binded. How should i unbind ...
1
vote
2answers
296 views
Use Chrome extension to unbind click events?
I'm trying to make an extension that unbinds a click event added by the website itself.
The website uses jQuery, which would make this insanely simple:
jQuery('a[rel]').unbind('click');
The ...
1
vote
1answer
2k views
Android, unbind service and onServiceDisconnected problem
I'm not good in English, but I would try to explain my problem in good way.
So, the problem is:
1) I have a local service
2) I start it and then bound to it.
3) Problem appears when I am about to ...
1
vote
3answers
673 views
How to disable / remove / unbind a jQuery Overlay?
I create a jQuery Tool's Overlay on a trigger as such:
$('button').overlay(
{
...
});
How can I disable and re-enable the overlay later on ? I want my $('button') element to remain as a link, ...
1
vote
2answers
1k views
jQuery/Javascript temporarily disable events attached by addEventListener/attachEvent
Is there a way to temporarily disable an event listener?
In my case, I have a third party library (not jQuery centric) that creates mouseover/mouseout events on an element using ...
1
vote
0answers
201 views
Inserting Google Search Bar into jQuery bind / unbind code [closed]
Possible Duplicate:
Personal Google search bar blocking jQuery underneath
I recently added a Google search bar to my website. How I found that it is blocking the navigation underneath even ...
1
vote
1answer
189 views
JQuery UnBind Works, Attempt to “re” bind does not
I'm working my way through a JQuery Solution and for the most part it works but I"m stumped on seemingly a small detail I know I'm overlooking. Heck, maybe my implementation/approach needs to be ...
1
vote
1answer
261 views
jquery unbinding and binding
I just want to disable the ability for a user to click on an element for some condition and then re-bind it later for another condition. Here is some of the code I am working with:
$('#navigation ...
1
vote
6answers
239 views
Removing all javascript events from a page and putting them back
I'd like to "pause" all the events of a page which means removes all the event set... and be able to put them back after.
Even the first part = removing all the events of a page, I don't see how to ...
1
vote
4answers
3k views
jQuery bind/unbind 'scroll' event on $(window)
I have this function:
function block_scroll(key){
if (key) {
$(window).bind("scroll", function(){
$('html, body').animate({scrollTop:0}, 'fast');
});
} else {
...
1
vote
1answer
330 views
Jquery - bind/unbind hover script, small bit of code, not sure what to do
I've created DIV.cb-toggle, when the user hovers over this div, it animates to Orange, when they hover off of this div, it animates back to gray, when the user clicks this div, it animates to blue, ...
1
vote
3answers
748 views
jquery: bind multiple events, then unbind a couple of them? is this right?
bind multiple events, then unbind a couple of them? is this right?
basically when you hover over the element, the background color changes, then changes back when you hover out of the element, but ...
1
vote
1answer
447 views
jquery: unbind a loaded function
I have a function which will resize the image background when the page is loaded,
$(document).ready(function(){
loadBackground();
});
and I want to 'unload' or 'remove' this loaded function when I ...