JQuery :: Removing Event With .off() Doesn't Seem To Work
Dec 14, 2011
I'm messing around with the two new event handling methods .on() and .off() but I seem to be doing something wrong... My code;
<div id="links-wrapper">
<a href="#">Click me #1</a>
<a href="#">Click me #2</a>
<a href="#">Click me #3</a>
</div>
[Code]...
What happens is that a click event is being attached to the anhors after the html loaded. The handler alerts which link you clicked and should then remove all events from the anchors from the given selector (resulting in that you should not be able to fire the event again) but this doesn't happen.
View 2 Replies
ADVERTISEMENT
Dec 6, 2011
I have problem with this code:
jQuery('.container').on('click', '.item a', function(event){
showContent(jQuery(this).attr('href'), event);
});
[code]....
View 1 Replies
View Related
Jan 11, 2011
I'm doing a tree-like structure using divs inside divs. I use event.stopPropagation() to stop parent events from firing when clicking inside them. This works just fine in Chrome and Firefox, but in IE8, I get an error message ("Object doesn't support this property or method") and the events propagate to the parents.
[Code]...
This works fine in Firefox and Chrome, but IE8 throws an error on event.stopPropagation(); saying "Object doesn't support this property or method". I have tried passing event as an argument to the function that handles the stopping of propagation but that doesn't help either. What's wrong and how do I fix it?
View 1 Replies
View Related
Sep 2, 2009
I'm trying to add a simple growing effect to a div using jquery, i'd like to create a button that changes his dimentions on the over event of the mouse and turn back to the original dimensions once the mouse is out.
I've used the hover event and I've created 2 functions:one for the growing effect used on the over status and the other one for the reduce effect used on the out status.In IE 7 I've got this error: the growing function is working but the reduction function is not working at all the error code on javascript it's only "Invalid property value".
Here some code:
function makeBig(){
$(this).animate({
"opacity":"0.80",
"width":"200px",
[code]....
View 1 Replies
View Related
Jun 28, 2009
I found the bug ticket with similar problem: [URL] but it was closed as invalid. The problem still exists for me. I have the following live event: $("a:not([onclick])").live('click', ajaxLinkHandler); It's not applying to content loaded via $.ajax(...).responseXML which I used to append in the following way:
// withing ajaxLinkHandler
var content = $(loadedDocument).find("[component='"+ id +"']");
$(this.contentContainer).empty().append(content);
View 10 Replies
View Related
Mar 10, 2011
The code:// JavaScript Document
function checkWindowSize() {
var width = $(window).width(),
new_class = width > 1800 ? 'large' :
[Code]....
View 4 Replies
View Related
Jun 3, 2010
i have a basic 2 column page, on the left is the navigation, on the right the content.i'm loading in the content with the load() method - some php generated html code which looks like this e.g.
<div id="container">
<div id="toggle">TOGGLE</div>
<div id="showArticles">
[code]....
so if i click on the toggle div.. nothing happens so i tried to put a <p id="toggle"> in the navigation bar which is static (not being load()-ed in via jQuery) and it worked so it seems to me, that jQuery can't get the click event out of the load()-ed page
View 1 Replies
View Related
Dec 9, 2010
This is my code:
I've set the animation to large numbers (1000) to make it very obvious.
The helper will show before the other fieldSets have been hidden. The show animation begins about half way through the hide animation. Since both elements are occupying the same space, this makes the container jump around in size as it breifly expands to fit one under the other.
View 2 Replies
View Related
Sep 23, 2010
I'm using my custom component that has a combo box (jsf's h:selectOneMenu, which has a onselect event)in it and it already has a onchange event, so I want the onchange event to trigger another onselect event with jQuery and it only works in Firefox.
I tried it without the component and it looks like this:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
[Code]....
and again works only in Firefox, and not IE and Chrome. It works with onblur event, but the onselect is closer to what I need.
Is it not working because the html <select> tag doesn't have a select event but Firefox can do it for some reason?
View 1 Replies
View Related
Jun 11, 2010
I have some problem with onunload where I want slideUp my menu when I go out form site. I have the slideDown function fire at body onload and this function work properly. but the slideUp() at onunload not.
My code:
$(window).unload(function() {
$('#menuContent1').slideUp();
alert('Handler for .unload() called.');
});
and even the alert work. Only the jQuery slideUp not working.
View 1 Replies
View Related
Feb 1, 2011
I have a js(using jQuery lib) file where all events and following actions(functions) are written. For one of such events there is a function that prepends one more similar element from which prepending was called:
$("#id1").click(function(){
$(...).before("<div id='id1'></div>");
});
so that when I will click to just prepended element one more element should be prepended and so on.The problem is that when new element is prepended, click event doesn't work on it. jQuery doesn't recognize it, like doesn't see it.
View 2 Replies
View Related
Dec 28, 2010
someone wrote a script for me to simulate an image map on a background header in wordpress. it works great in chrome and ie, but not firefox.
<code>
<script type="text/javascript">
function geturl() {
myMouseX=event.clientX
[Code]....
View 1 Replies
View Related
Jul 18, 2010
I'm trying to augment Object.prototype with an addEvent method that will add event listeners, and will work regardless of whether the browser is IE or not.Here's what I have: So far it seems to work in non-IE browsers, but in IE8 it doesn't work. Where am I going wrong?
Code:
(function(){
try{[code]....
View 2 Replies
View Related
Feb 13, 2010
I'm working on a image slider, which will slide left to right and vice versa on mouser over event. the images are dynamically loaded from the database using ASP script. I use mootools.svn.js for the sliding implementation. and Ajax to pass the id of the image to another page as a query string. this is implemented in a onclick="getValue('<%= id %>')" event. This works fine in IE8, but when I test in Firefox 3.6 and Chrome the onclick event doesn't work. when I comment the mootools.svn.js, the onclick event get fired.
[Code]...
View 3 Replies
View Related
Jul 28, 2010
I have this function:
function correctBookmark() {
var title = "SERCO Benefits";
var url = "http://wwww.example.com";
if (window.sidebar) { // firefox
[Code]...
It works in FF but not IE.
If I use:
$(document).ready(function () {
correctBookmark();
});
It works in FF but not IE.
I want to auto bookmark for the user.
View 1 Replies
View Related
Jul 4, 2009
I got this problem with live() event.I have used it as follows.
$(".addressDiv span").live("mouseover", function(){
//clickable function here......
------------------------
});
I have used the live() event to trigger the function on mouseover in the dynamically added elements. But the problem i got is that once the live event is called it takes the class of the element and stores. And when the class of that particular element is changed dynamically the live() event does not detect the new classed added dynamically, instead it takes the former class. Live() event does not update the class.
View 3 Replies
View Related
Dec 10, 2011
I've this script:
When I press again the "a.item_add" link it doesn't work (doesn't fadein the div again). how can I "restart" the script ?
View 2 Replies
View Related
May 10, 2010
This is a makeshift sort function for a table. I want to replace a div contents with a javascript function call. It works fine if I define the individual case, but the general case doesn't work. The problem lies with the +divHold+ part. It never converges to the passed value on the 2nd iteration. This is my Div:
[Code]...
View 4 Replies
View Related
Jun 14, 2010
The "Permission denied" cross site issue.
I have to check from my external domain if a service is running on localhost:8080 of a local machine.
I'm using XMLHttpRequest to do it.
I'm checking a local-web-server, not a file.
Every browser doesn't work, but Firefox. So I'm looking for a work-aorund.
An iframe? a flash swf? an applet java? HTA applications?
A side question is, why does FF work? Because it's a local-web-server?
View 2 Replies
View Related
Feb 24, 2010
Why doesnt the following code work in IE. There is an error on the same row as fillText. It says object doesnt support this property or method.
<html>
<head>
<title></title>
<script type="text/javascript" src="excanvas.js"></script>
</head>
<body>
<canvas id='chart' width='500' height='200'>
[Code]...
View 1 Replies
View Related
Apr 25, 2009
How would I remove the custom onComplete event from the monitorAnimation variable where monitorAnimation is a instance of YUI.util.Anim?
[Code]...
View 1 Replies
View Related
Jun 5, 2010
i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.
<UL>
<table class="mytable" width="100">
<body>
[code]....
View 2 Replies
View Related
Jun 23, 2011
I got a table with td's and each of the got onchange and onclickwhen i change value of a td and click on other td i get the onchange event(of the first td) being fired and then the onclick (of the other td) being firedBUT...if inside the onchange event I use transformNode function , it will result in disabling the onclick event of the other td...How can I solve this issue and make the onclick event being fired ???
View 3 Replies
View Related
Apr 22, 2010
I tried to use fade in the code below, it works in firefox but not ie7.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
[code]....
View 1 Replies
View Related
May 7, 2011
I've just tried the JQuery fadeIn effect and it works in FF, Opera and Chrome. But it doesn't in IE.
This is the JQuery code
//contact click, load data
$('#contact').click(function() {
$('#contentFill').fadeIn(1200, function() {
$.ajax({
[Code]......
View 4 Replies
View Related
Dec 1, 2011
I have a problem with hide() method on ie9: if I put this command after a flag, it (hide) doesn't work anymore.Obviously the same code works pertefect on firefox.[code]
View 3 Replies
View Related