All Questions
139 questions
0
votes
1
answer
63
views
jQuery: How to prevent item prices from being added to the total when they are unchecked?
I'm developing a custom checkout and have a bit of trouble with the jQuery. What I want is for each item that's checked to be added to the Subtotal and the Total values. Also, when an item is ...
1
vote
3
answers
2k
views
jQuery unbind and bind keypress
I have textbox with javacript function using keypress.
<input type="text" id="statusSheet"/>
JS
$('#statusSheet').keypress(function (e)
{
if(e.which ==13)
{
$('#statusSheet')....
0
votes
1
answer
112
views
jquery unbind multiple events by namespace assigned to a single element
I know I can write a delegated function like this:
$("table").on("click.customNS", "td", function(){
//do something
});
And then to unbind, just:
$("table").off(".customNS");
So how would it ...
1
vote
1
answer
48
views
Can I unbind an "on" update function?
Is it possible to unbind a .on "update" function?
Example:
price_slider_element.noUiSlider.on('update', function( values, handle ) {
// Code
});
0
votes
0
answers
118
views
How to use bind and unbind function instead of on click function on class using jquery?
Here, I have a very small module. In which I have a timeline and slideshow.
In my timeline, Everything works fine. But when I going to the slideshow.
It also works fine using on click function on the ...
0
votes
2
answers
231
views
How can I use bind and unbind with this?
I have two click functions, one function is for adding vacation in a list, the other function is for removing vacation from the list. When I add vacation to the list, I don't want to be able to click ...
-1
votes
1
answer
137
views
How to bind and unbind click event from two different functions?
I have two click functions, on function is for adding vacation in a list, the other function is for removing vacation from the list.
When I add vacation to the list, I dont want to be able to click on ...
1
vote
1
answer
456
views
bind after unbind window Jquery
I'm creating a page with two section where I load content .load() into #container by clicking on the titles.
<div id=dogs>[dogs]</div>
<div id=cats>[cats]</div>
<div id=#...
1
vote
0
answers
57
views
jQuery - How can I bind events to an element and prevent them from conflicting such that they do not undo one another?
I am working on a timeline, and I have ran into an interesting problem which does not appear to be possible to resolve by combining the events into a single task. Please see the mark up below.
My ...
3
votes
2
answers
2k
views
How can I unbind every single binding from a Tkinter root window
So I have an app in Tkinter that has a lot of buttons in the first screen and when you press one you pass into a new "Window" (basically destroying all widgets and drawing the ones that are needed for ...
1
vote
2
answers
13k
views
JavaScript .on("keyup")
There's an input text fires a function on "onkeyup" event. When that function fires I'm binding a "keyup" event with .on("keyup") method to get the last pressed key to find out if it was ...
0
votes
1
answer
4k
views
python unbinding/disable key binding after click and resume it later
I'm trying to unbind/disable key once it's clicked, and resume its function after 2s. But I can't figure out the code for the unbinding. The bind is on window. Here's the code that I tried so far:
...
1
vote
1
answer
1k
views
How to off (Jquery) bind or unbind specific event from any element
I want to know how to bind or unbind specific event from any element.
$(document).ready(function(){
$("#div2").on("click",function(){
$("#div1").on("click",function(){
console.log("...
1
vote
1
answer
588
views
Unbind hashchange event
is it possible to unbind the hashchange event?
I am binding it like this:
jQuery(window).on('hashchange', function() {
alert("ok");
});
and unbinding like this:
jQuery(...
0
votes
2
answers
2k
views
Unable to remove bootstrap date picker from textbox
My scenario is that i have couple of textboxes
i manually add bootstrap date picker with that text boxes manually in jquery
$('#dataRange input').addClass('datepicker');
$('.datepicker').datepicker(...
0
votes
3
answers
2k
views
jQuery: unbind dblclick and then bind it again
I have a table with different database query results. Each td has an id and an onDblClick property like this:
<td id="Vorname_2036" onDblClick="makeForm(this.id)">
Mark
</td>
Don't ...
0
votes
2
answers
461
views
bind and unbind functions
I have 3 buttons - btn 1, 2 and 3 - with each their own function asigned to it. What I want is that button 1 has function 1 by default. But when pressing button 2, the function of button 1 has to ...
0
votes
1
answer
69
views
Don't execute jQuery if div value is lower than £X.XX
I have a script that triggers a click on a page element (building an A/B test and need to bypass a certain page):
jQuery(document).ready(function() {
setTimeout(function() {
jQuery("....
0
votes
1
answer
1k
views
Python: How to I unbind a variable from instance in a class?
In class, let's say I have an instance
self.my_instance=6
Then, in a method, say I have something like
my_variable=self.my_instance
Every time I change my_variable to some other value, self....
3
votes
1
answer
3k
views
Kivy - unbind all methods attached to a button
I am writing a program that has a panel of buttons on the right hand side, that successfully binds a method to each, dependant on user input/actions. My issues is that I cannot unbind() the method ...
0
votes
3
answers
708
views
Sequential Unbind/Bind Click
I have 5 div classes (button1, button2, button3, button4, button5)
What I want is that all classes are not clickable onload (except button1) and then after button1 is clicked, button2 is active and ...
1
vote
2
answers
3k
views
I am trying to change the source control binding for a project, it was previously bound to a folder in tfs but I want to bind it to another.
I have unbound the project and then hoped to re-bind it to a different directory within tfs but it only rebinds it to the same location and does not let me edit that location. I have deleted the suo ...
0
votes
2
answers
687
views
bind and unbind a function jquery
I looking for to enable a function (and not the event) after a click function and disable the same function after another click function, for exemple :
function foo () {
$('#bg').hover(function()...
3
votes
1
answer
3k
views
issue unbinding "DOMSubtreeModified" within itself and setTimeout
I have following issue:
setTimeout(function() {
myElement.bind("DOMSubtreeModified", function() {
if (something == true) {
console.log("Keep outputting this message");
} else ...
2
votes
1
answer
259
views
Remove event handlers of children but not self with jQuery
I have a div that has a child span which in turn has an another child span.
I hook the parent div with mouseDown event like this:
$("." + cellClass).mousedown(mouseDownEvent);
But this also hooks ...
0
votes
1
answer
38
views
unbind jquery to copt the output text
I am trying to unbind on a certain element - #result
the output box has the ID of #result
because i have ("input, BODY")
the bind will happen on body - keyup click and mousemove
i need it so when ...
1
vote
1
answer
215
views
what is the purpose of binding and unbinding the same javascript function?
I know what jquery bind() and unbind() does. But What is the purpose of binding and unbinding the same function using jquery function. In a large code base, I saw binding and binding a function in ...
0
votes
1
answer
613
views
Unbind and rebind click
I have the following code:
$('#maincontent img').click(function(){
console.log($(this).attr('src'));
$myFile = $(this).attr('src');
/*$('#gallery').css('height',0);*/
$('#gallery')....
2
votes
2
answers
2k
views
How to re-bind jQuery window scroll again after unbinding it?
I need to re bind() the scroll() to $(window) again after using unbind() to stop a div replicating itself - (#mystat-1). I have tried $(window).bind('scroll'); but it doesn't work. Thanks!
$(window)....
1
vote
2
answers
7k
views
How to unbind() a hover/ mouseover event?
My idea is very simple. I have a menu bar made from an unordered list of 3 items. Each item has an image coinciding with the title. I Photoshop'ed an 'active' version of each icon. Every time the list-...
1
vote
1
answer
2k
views
Removing event listeners, jquery, memory leak and performance
in my web application, the servlet generates a dynamic html page depending on the business rules. i have a container div, which remais always and update its content depending the scenario. suppose, ...
0
votes
3
answers
509
views
jquery on and off function after click
I'm using 2 jquery codes on my website.
first code is :
function bottom_open() {
$('.cartouche_bottom').css('position','absolute').animate({
top :$(".top_table").height() - 1,
...
1
vote
2
answers
893
views
How to disable click event in slideshow until animation is finished and then bind it again?
I'm working on a slideshow, but I don't understand how I can unbind and rebind my buttons.
What I wanted to happen is set it up, so that when the animation was triggered, the user couldn't click the ...
2
votes
1
answer
810
views
jQuery mousewheel fire only once while animation not finished
I have two functions animation1() and animation2(). Each of these functions contains a few animations (animate()) in a chain. Each animation set has two parts:
move object in scene1 > hide them > ...
0
votes
1
answer
871
views
Unbind then bind not working as I want it to
I need to unbind a click event then after its fired I need to bind it again
Here's my script
$(function() {
$('.bundle').unbind().click(function() {
var codeList = "641351,641251,641253";...
0
votes
0
answers
255
views
Bind unbind jquery script on browser resize
I am trying to stop a script running if the browser width exceeds 640px, basically if the browser is more than 640px, then it should show a grid, if it's less then 640px then show a slideshow.
The ...
0
votes
1
answer
60
views
Working with unbind() and bind () function
hi i've build an image slider with prev/next. The problem that after unbind the prev- or next Button, i want to bind them again, how can i integrate the bind() into my Code?
this is my Code:-
// for ...
1
vote
3
answers
101
views
Unbind the "all selector" in jquery
how can i unbind only the "all selector"?
I try $("*").unbind(); but than jquery unbinds my $('#demo').click(function())}; too.
HTML
<div id="hv_t"></div>
<br /><br /><...
0
votes
1
answer
1k
views
Unbind all event handlers, do something and then bind again with jquery
I tried to store all event handler of an element, then unbind them, then do something and then bind again, but aparently the variable with the handlers gets modified to an empty object when i unbind ...
0
votes
1
answer
938
views
Show div based on input value then hide if unchecked
Hi all I have a survey that when a box is checked it displays an answer based upon which answer you selected. I got this working and all, but am running into trouble when someone unchecks a box I want ...
1
vote
2
answers
223
views
Iterate through array and bind events
I've checked through the forum and cant seem to find a solution to my problem.
I have an array of id's and I'm iterating through them with a for loop adding mouse events for enter and leave.
However ...
0
votes
1
answer
2k
views
Can't remove/change onclientclick event from asp button JQuery
I have some code in my site that checks against a credential object. Depending on the type of user, I register a .js file that contains some code that disables functionality. I just want to remove or ...
-1
votes
1
answer
1k
views
jquery unbind and bind on ajax success
i am creating a slideshow, when i reach on end of lis and click right arrow, ajax should fire and load new list of images. When i reach the end of second list, ajax should fire agaiin. If i click ...
4
votes
3
answers
9k
views
Unbind an event from Document : jquery
Binding a function on document all element having class SearchableCol
jQuery(document).on("click", ".SearchableCol", nwcsClickFunc);
I am trying below two methods to unbind, nothing is working.
...
0
votes
2
answers
527
views
jQuery re-bind event function
$(document).ready(function (e) {
sample(); // Initialize the function
}
function sample() {
$(document).scroll(function (e) {
var scroll_top = $(window).scrollTop();
var ...
1
vote
0
answers
254
views
how to rebind event after unbinding it on click
I searched the internet for a lightbox that allows me to zoom the image at the same time.
now i only found a solution for paying a lot of money. so i decided to take two plugins and use them together. ...
3
votes
3
answers
9k
views
click event fires multiple times issue, how to?
I have a button. when I click it I am appending some buttons to the DOM.
The issue I have is that those buttons that I am appending fire multiple times.
$(el).on('click', function (e) {
key();
}...
1
vote
3
answers
3k
views
jQuery: dyanically attach keyup to a dynamically created input
So I have this scenario
When I load the form I originally have an input of type text.
That input has the "keyup" event attached to it, if the user has entered more than 5 characters a new input text ...
0
votes
2
answers
2k
views
How to bind and unbind mouse events on Marionette
I have this event in my view:
events:
"click" : "clickContainer"
How can I unbind/bind (able and disable) temporary the click event in the same View?
0
votes
4
answers
2k
views
jQuery deactivate click event on one div when another div is clicked
I'm currently making a website and I have 2 clickable divs "#coloursettings" and "#powersettings" both successfully unbind the menu ("#tab a") but I want each clickable div to deactivate the other, ...