The jquery-event-binding tag has no wiki summary.
0
votes
0answers
10 views
How to bind function to isotope preLayout (pre positioning) event
I would like to change the width of my elements depending on the screen size so that they fill the entire screen, I used a for loop to find the width for the isotope elements that will fill the entire ...
2
votes
1answer
24 views
jQuery Mobile event handler not always working
I have an event handler which should be called after the value of a selectbox (id="save-login") has changed. The selectbox is displayed as a slider, hence I use the "slidestop" event. The page has a ...
0
votes
3answers
37 views
jquery .not() to execute method on click of all elements but not some elements
I want to hide a box on clicking anywhere in document but not in few areas so I wrote this code:
...
0
votes
1answer
25 views
How do i trigger an event on mouse over with iframes
I have tried everything and cant get the value of the next iframe, the i frames are echoed out using php.(code below)
<div class="video" vid="'.$userID.'" '.$style.'"><iframe ...
0
votes
1answer
31 views
How does the event chaining works for multiple objects?
I'm performing a deleting action on a page when the user click on the confirmation button on a twitter bootstrap modal window button.
I have two buttons: one allow the user to cancel the action, and ...
0
votes
2answers
38 views
JQuery passing arguments for On Change for an item added to DOM via AJAX
I have multiple HTML fragments that are inserted into my DOM as the result of AJAX call-backs.
Each of these fragments will contain a text box whose class is "quantity".
What I want to do is to ...
-1
votes
0answers
26 views
javascript issue with after updating with another function
I have a button to change an image upon clicking.
<input type='button' name=changeimage value='click to change' onClick='javascript:changePic(<?php echo picname; ?>)'>
Then I have ...
0
votes
0answers
28 views
jquery.data API and event binding[Unable to understand]
Please explain the following snippet [read on the internet and also couldn't understand]:
var $this = $(this);
$this.data('key', $this);
$this.on('click.key', function(e) {
// do something
});
...
3
votes
2answers
49 views
Any way to bind event handler and call it at the same time?
I have some code like the following:
var f = function() {...};
$(window).resize(f);
f();
As you can see, I'd like f to be called every time the window is resized, and also for f to be called once ...
0
votes
0answers
46 views
How to create JQuery-UI widgets dynamically
I understand that I can use .on to bind functions to DOM elements when some event occurs on an element.
I have been using JQuery-ui, and I want to create different JQuery-ui elements once they have ...
0
votes
1answer
75 views
What are the reasons that live() and bind() are deprecated post jQuery 1.7
As of post jQuery 1.7 the .live() and .bind() are deprecated and instead of that .on()
is being used. Both of these were great functions were working like charm. What is purpose of removal? What is ...
1
vote
3answers
92 views
jQuery deleting multiple items instead of just one
I have a table which has buttons when you hover on its rows. There is a delete button that calls a custom confirm dialog; this basically just accepts the callback function that it will perform when ...
0
votes
0answers
48 views
(jQuery 1.8.2) load binding doesn't work
I coded a little script that load from another page some content into a tooltip div. After loading, I want to move the tooltip and manipulate it a little. To do so I want to wait the browser ...
1
vote
2answers
304 views
pass value to onclick event for table row
I have a table row that i am creating on Ajax call. I would want to associate an onlclick event. I am unable to pass an element from an array which i am traversing (which d[i] as per the code shown ...
0
votes
1answer
97 views
Binding Keyup to an Element using jQuery extension and jquery.on
This seems very simple, but for some reason it's not working as expected.
I am trying to make a very simple jQuery extension/plugin which allows me to simply reduce my lines of code when requiring a ...
0
votes
1answer
73 views
Binding event to dynamically added elements to DOM using jQuery
I'm dynamically adding few elements to DOM. And I want to manipulate these element behavior using .on() function of jQuery. But somehow DOM is not firing .on() event for dynamically added elements.
...
3
votes
1answer
55 views
jQuery bind event for two selectors with on() method
I have bound click event with on() method as below:
$('#container').on('click', '.selectorA', function(e){
e.preventDefault();
return false;
});
It works well, however I'd like to bind this ...
0
votes
1answer
139 views
jQuery attach change event on hidden file inputs
I'm trying to create/custom the default file type inputs so that they look the same across all common browsers. What I'm doing is hiding the default input and showing my custom file type input. Then I ...
3
votes
1answer
54 views
Jquery event binding with .on()
Can someone explain to me why this works:
parentBox.on('click', '.close', function() {
parentBox.fadeOut();
return false;
});
But this does not:
var closeBox = ...
2
votes
1answer
288 views
Twitter bootstrap with Knockoutjs - Radio button value
I have a ASP.Net MVC4 website that uses twitter bootstrap along with Knockoutjs. One of the requirements is to refresh the view model when the user toggles between some options. To do this, I have ...
1
vote
1answer
171 views
JCrop: previous image not updated?
I developed a small JCrop file upload app; here is my code:
function createCropImage(event)
{
//alert(event.target.result);
document.getElementById("Imgpreview").src = ...
2
votes
2answers
112 views
dynamically bind .on() method with event-map
I'm using this syntax to make sure that the events bind on dynamically added li elements
$('ul.list').on('click', 'li', function() {
//do something
});
I tried to archive the same with an ...
0
votes
1answer
54 views
Calling JQuery.bind() after a function
I have a piece of code that works well but I cannot get the idea behind part of it, so any help is appreciated.
In the following function what does the bind(this) function do at the end of code? I ...
1
vote
2answers
48 views
Wire up many events that have the same event name but different namespaces
Let's say I have the following contrived code:
function runTriggers() {
$(document).trigger('mytrigger.ns1');
$(document).trigger('mytrigger.ns2');
$(document).trigger('mytrigger.ns3');
...
2
votes
2answers
28 views
How to tell event handlers to point to dynamically loaded content
I'm looking for a solution to the following problem:
1) I'm loading a couple of text lines, some of them containing a link to a footnote like this: 1). These lines are embedded in an <a> ...
0
votes
3answers
334 views
JQuery - Button Click not firing
We have a Search textbox and search button in our page. We need to fire the server side button click event when the user enters a search string and hits enter. The code is in the user control(ascx).
...
0
votes
0answers
87 views
Jquery mobile page event after variable changed by popup on a same page
actually using pageshow event i can manage to update variables depends on login callback, and 'logged' changed from false to true . But it seems it fails to apply updated condition when those ...
0
votes
0answers
50 views
Debugging in Chrome: break when run into different Javascript file?
is there any way to let Chrome Debugger break when run into different Javascript file?
Because I'm debugging an legacy web app, tons of js file, this feature will help me to find the event handler ...
1
vote
2answers
46 views
jQuery event binding efficiency issue
I have this [and more] very inefficient bit of click event binding code in my project and would like to find a way to make this faster, as I believe it is the cause of a lot of slowdown of my ...
0
votes
1answer
71 views
jQuery is triggering multiple events for the content that are generated before Dynamic Content
I have building a dynamic purpose based form fields repeater, but having some difficulties on jQuery click event function.
You can watch my code here - http://leading-people.com/resources/form/
I ...
2
votes
1answer
52 views
Should I set multiple element bindings on $(document) in single or separate calls?
I'm trying to clean up and improve some code. There is a fairly large snippet which attaches multiple events to $(document) like so:
$(document).on('eventA.nameA', '#pageA', function(){
// do sth
...
0
votes
4answers
73 views
jquery on does not react to element added by clone()
I was under the impression that jquery's on() reacted to events attached elements dynamically added to the dom (via ajax or cloning, etc). However, the following is only working for the element ...
1
vote
1answer
151 views
mousedown event on options in select with jquery .on
I was reading the documentation of the .on event handler of jQuery and I started playing around with it.
I have a simple <select> element with the multiple attribute set to true.
However, I ...
1
vote
0answers
155 views
iPhone Safari doesn't rebind scroll event after pressing back button
I have a jQuery page-scroll event bound on page A, and a page-resize event.
I click through to page B.
I then press back to return to page A.
The resize event remains functioning, but the scroll ...
0
votes
2answers
117 views
Disable jQueryUI button and keep its original layout/style
If I disable jQueryUI button using "disabled" option, button goes dim.
But I don't want it that way - I just want it unresponsive and styled in its original layout - no rollovers, no clicks - ...
1
vote
1answer
390 views
jQuery .on / .off event handling, order, and proper removal
jsFiddle: http://jsfiddle.net/fThMa/2/
Clicking inside the note / rend text fields and then double clicking any of the 4 TDs below inserts into the note / rend textfields appropriate HTML entities, ...
3
votes
1answer
539 views
Enabling jQuery contextMenu item on ajax request
I'm trying to update contextmenu item if ajax requests alters my div content.
Here is what I mean I have a div like this :
<div id="" class="message" data-options='{"update":"YES", ...
6
votes
1answer
49 views
When adding an element to a list what is the best way to trigger this event [duplicate]
Possible Duplicate:
How to identify when the DOM has been changed?
Let's suppose I have access to the <ul> element $(ul#mylist).
How can I trigger the event when some item is added to ...
0
votes
3answers
105 views
click on div which is under div
I've got situation:
<div id="main">
<div id="a"></div>
<div id="b"></div>
</div>
On my web page, element B is under A. How can I bind click to only those A ...
1
vote
1answer
202 views
jQuery Ajax .ajaxSuccess() event not firing
I have a native javascript object, that I would like to assign the .ajaxSuccess callback to. The purpose of this is because I want my data model to update after an ajax call succeeds, but I don't want ...
3
votes
1answer
176 views
Elegant way to check if JQuery object has an event under a namespace
For Instance, lets say we want to check if 'this' has any events under the namespace proxy; I currently do:
// 'this' is not a DOM element
if ($($(this).data('events')).length === 0 || ...
0
votes
1answer
168 views
Writing to a data-* attribute and getting it with jQuery .data() [duplicate]
Possible Duplicate:
jQuery .data() Not Updating DOM
I am having a problem with using the on attribute. I have written a small set of methods to send api calls.
The markup is like this:
...
0
votes
3answers
215 views
JQuery hover and click event
I have a number of photos of people on a page and I want to display an alternate photo of a person on mouse over and have the photo revert to the default on mouse out. I also want the alternate photo ...
1
vote
1answer
44 views
Trying to extend jQuery
I'm extending jQuery with a function I wrote called bindHoverEvents:
$.fn.bindHoverEvents = function () {
this.hover ( function () {
// mouseenter function
}, function () {
...
0
votes
2answers
192 views
jQuery late binding of Ajax elements doesn't work
I'm really stuck with a jQuery issue and I hope someone can help me out...
So I have a list of options on the left, and when you click on one, a form is generated via Ajax on the right. There's this ...
0
votes
4answers
117 views
How to bind a DOM element to a custom $.touchpress event?
I want to create a custom event called touchpress that an object can be bound to using the usual JQuery .bind().
Here is how I currently work out a touchpress for a button:
...
0
votes
1answer
616 views
jquery on show and on hide not working with class selector
I am trying to enter certain roles in a text area and have it highlighted in a popup block using bootstrap.
The expected behavior is that the selected roles must be highlighted, the code works when I ...
1
vote
0answers
192 views
bind event handlers to cloned element using jQuery .clone()
I am using .clone(true, true) to create a copy of a DOM element that has many event handlers bound to children elements. The handlers are bound using #id selectors. So, when I clone the element and ...
1
vote
1answer
88 views
Triggering and binding to custom events?
I'm trying to write a basic dialog box. I want to be able to specify a link element which will launch a dialog box when clicked.
I'n specifying this behavior using data attributes in the dialog boxes ...
3
votes
2answers
209 views
jQuery binding AJAX events without DOM element
In the documentation of jQuery AJAX Events all the examples use a jQuery DOM Element for declare a binding like this:
$('.log').ajaxSend( hander );
I want to catch jQuery AJAX Events without the ...


