Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
6answers
25k views

event.preventDefault() function not working in IE. Any help?

Following is my javascript(mootools) code: $('orderNowForm').addEvent('submit', function(event){ event.preventDefault(); allFilled = false; $$(".required").each(function(inp){ if ...
4
votes
2answers
76 views

preventDefault() not working on SELECT elements in Firefox 9.0.1

I realise there are other questions on preventDefault() not working with Firefox, but they did not help me. I've got three SELECT lists, and all I want is to navigate between them using the arrow ...
4
votes
5answers
2k views

What is the opposite of evt.preventDefault();

Once I've fired an evt.preventDefault(), how can I resume defualt actions?
4
votes
2answers
248 views

run function only if event default is/isn't prevented

Is there a way to run a function only if event.preventDefault() is called on an event (by another unknown function). This is for a jQuery plugin, so I don't have any knowledge of what other parts of ...
3
votes
1answer
45 views

Some kind of JavaScript's preventDefault for Android

I'm developing an Android app with a big form. The Layout is contained by a ScrollView, so I can scroll up and down through the form. The problem is that I have to capture some draws (a signature) in ...
3
votes
4answers
193 views

Blocking default action on keypress with iframe

This is a catch 22 I can't really figure out how to resolve. Take this HTML5 game we host: http://www.scirra.com/arcade/action/93/8-bits-runner - Warning has sound! The page is hosted on scirra.com ...
3
votes
1answer
120 views

Fully “Kiosking” Chrome (capture and prevent default of C-w/t/n)

I need to prevent Ctrl-w, Ctrl-t, Ctrl-n from doing their default functionality. inb4 zomg i hope this isnt possible, your an awful purson. event.preventDefault() only works on lesser key combos ...
3
votes
4answers
55 views

jquery clarification regarding preventDefault

http://api.jquery.com/event.preventDefault/ "If this method is called, the default action of the event will not be triggered." "default action" means redirecting people from a different page when ...
3
votes
1answer
55 views

Is this a core misunderstanding of the default click event on checkbox inputs, or flawed code?

When binding to a click event for a checkbox input, the checkbox is already toggled by the time my event handler runs and, more oddly, the toggle is reversed after my event handler runs if I specify ...
3
votes
2answers
283 views

Opposite of PreventDefault for links and drop-down selector?

I have a jquery click event for a bunch of links and one drop-down selector in my MVC view and I preventDefault on them before doing the event, because most of them redirect to a view (the redirect ...
3
votes
1answer
518 views

Opera preventDefault() on keydown event

I'm trying to embed some keybindings in my webapp, and I'm having hard times with Opera. I have this code: window.onkeydown = function(e){ var key = e.keyCode ? e.keyCode : e.charCode ? e.charCode ...
2
votes
1answer
160 views

How do I undo preventDefault(); on touchmove?

if ((body).hasClass('dialog-visible')){ document.body.addEventListener("touchmove", function(e) { e.preventDefault(); }, false); } I am trying to remove preventDefault(); when the dialog is ...
2
votes
1answer
80 views

jQuery Prevent div's click behavior when inline href is clicked

I have a div containing a href. The div has a jQuery live click event: $(".item").live("click", function() { window.location = this.id; }); In the div I have a href: <div class="item" ...
2
votes
1answer
42 views

Jquery preventDefault is not working for many submits

I'm trying to bind two submits events, and prevent the second one. Example: $('form').submit(function(event){ alert(1); //if some condition cut the submit events ...
2
votes
1answer
497 views

How do I prevent the default behavior of the touchmove event in iOS 5?

I have a web-based application that includes a component that the user can scroll up and down with their finger. I use the event's preventDefault method to prevent the default behavior where the touch ...
2
votes
4answers
72 views

Trying to prevent default click and run a function instead

I'm pretty new to JS and jQuery, and I've just gotten enough grasp on basic JS to try some things out in jQuery. So what I'm trying to do here is prevent pages from loading when a link in the main ...
2
votes
3answers
78 views

How to select for td class in Jquery

I'm having trouble selecting for an element on my DOM. How do you select for all links of the td class trash can? <td class="trash_can"> <a rel="nofollow" data-remote="true" ...
2
votes
2answers
507 views

Prevent default event for jQuery keydown in Firefox

I have jQeury code which makes an array of focusable elements and binds .keydown for the left and right arrows to tab through them. In Chrome, IE, and Safari beginning with preventDefault() or ending ...
2
votes
2answers
1k views

What's the difference between event.stopPropagation and event.preventDefault?

They seem to be doing the same thing... Is one modern and one old? Or are they supported by different browsers? When I handle events myself (without framework) I just always check for both and ...
2
votes
1answer
619 views

jQuery: event.preventdefault not working with Firefox (mac and PC)

I have this bit of jQuery toggling a paragraph after an H3 link. It works in IE and Chrome on PC and Safari and Chrome on Mac. On Firefox on both platforms, clicking the link does nothing at all? ...
2
votes
4answers
822 views

Prevent browser pop on taphold event

In a jquery-mobile based web app, how do i prevent the default browser menu from showing on "tap hold" .. instead i want to show a custom dialog page .. mentioned below is my code as of now .. ...
2
votes
4answers
238 views

Prevent click jump on jQuery one() function

I'm using the one() function in jQuery to prevent multiple clicks. However, when they click the element a second time, it does the annoying click jump and sends you back to the top of the page. Is ...
1
vote
3answers
23 views

jquery turn preventdefault on and off

Here's what I tried so far: var preventDefaultFunc = function(e){ e.preventDefault(); } then I call it in the click function later: $('.item').click(function(e){ ...
1
vote
2answers
48 views

Jquery if conditions false then prevent default

I am having a link. When some one clicks on that, i want to check is some conditions before letting it work. If its false the default action have to be prevented. $(".pager-next ...
1
vote
1answer
39 views

jquery PJAX/AJAX preventDefault() not blocking link from being clicked

i'd like to prevent PJAX clicking of a link unless an input box is keyed up. here's the code: $('a.pjax').pjax({container: '#main_content'}).live('click', function(event){ if(keyed){ ...
1
vote
3answers
132 views

jQuery .preventDefault();

I have a 2 jQuery scripts- one before I added .preventDefault, and a copy of the same script after I added the .preventDefault. jQuery works in the initial, but not after I add .preventDefault() ...
1
vote
1answer
83 views

Form still submits on preventDefault

I am using jQuery to submit form data to a file in the form's action. However, when I submit the form, the browser redirects to the action (comment.php). I don't know why this is because ...
1
vote
3answers
41 views

Shouldn't returning false prevent jQuery on() from bubbling up?

According to the jQuery docs Returning false from an event handler will automatically call event.stopPropagation() and event.preventDefault(). A false value can also be passed for the handler ...
1
vote
1answer
186 views

jQuery 1.7 on() method

I have just downloaded jQuery 1.7 for a brand new project I'm starting. After reading the the docs I see .on() now replaces .live(). Quote from the docs: As of jQuery 1.7, the .on() method ...
1
vote
1answer
95 views

Anchor click preventDefault and then turn back on

Below is problem and code: I'm clicking on an anchor which has an href set already. Step1, upon anchor fileMove click, I'm preventing it from firing original href because I'm opening a popup for ...
1
vote
1answer
63 views

disable scroll on iPad, but still be able to use input type=range slider

I'm interested in a CSS approach to disabling scrolling on the iPad. I'm using an input type of range to create a slider, but would like to prevent scrolling on the rest of the iPad to keep a fixed ...
1
vote
1answer
61 views

Cant preventDefault() on jQTouch link

I am trying to prevent a link in my jQTouch application from loading the page in the href. A very simplified version of my code is as follows <html> <head> <script ...
1
vote
4answers
92 views

event.preventDefault() not stopping mailto links w/ gmail

I have a jQuery function with even.preventDefault() applied to a click on any element with the class 'editable'. It's not preventing gmail from opening up it sweb interface to send an email, however. ...
1
vote
2answers
209 views

Disable Hover on Click

I have a div with an unordered list inside that slides left when you click an LI item. <div id="products"> <ul> <li><a href="">Product 1</a></li> <li><a ...
1
vote
2answers
177 views

Use JQuery preventDefault(), but still add the path to the URL

I am working on a website where clicking on a certain link will slide down a login panel. I am using event.preventDefault() to stop the site from redirecting as well as an animation event to slide the ...
1
vote
7answers
162 views

Ajax Submit Page Refresh

I've been going nuts, and I can't seem to figure how to stop the page from refreshing when submitting a form via ajax. I've set up a jsfiddle for you to look at: this link I've done the ...
1
vote
1answer
388 views

Prevent Default on Form Submit jQuery

What's wrong with this? HTML: <form action="http://localhost:8888/bevbros/index.php/test" method="post" accept-charset="utf-8" id="cpa-form" class="forms"> <input type="text" ...
1
vote
1answer
743 views

undo preventDefault() or better way to programmatically disable collections of links

I have a page that has event listeners for the network status. When the network is 'offline' I want to disable any cross domain links as to go into an offline mode. I was trying to use ...
1
vote
2answers
227 views

I'm having trouble using the event.preventDefault(); for an ahref on my DOM

I'm having trouble using the event.preventDefault(); for an ahref on my DOM. How do you prevent the url from posting a nofollow delete, as specified by the HTML using JQuery? <td ...
1
vote
2answers
159 views

PHP function respondes differently to submit after preventDefault()

I'm using a PHP file (as part of a wordpress plugin), which contains several functions. One of them builds an html form and another one deals with the submitted form. I've added to the function that ...
1
vote
1answer
417 views

e.preventDefault() is not working on div onclick

preventDefault() is not working on div onclick, i tried preventDefault and stopImmediatePropagation also nothing works, please see the below sample. <title></title> <script ...
1
vote
1answer
191 views

JQuery preventDefault() is stopping subsequent function

I am using the preventDefault function to stop my form from submitting. This is working fine, however following that function I have a onClick function which is no longer working. Strangely, before ...
1
vote
2answers
245 views

Cancelling a keyboard event in Flex 3 / Flash

I have a textArea and would like to prevent the default behavior for certain keys such as the enter key from being run upon user input. However, KeyboardEvent is not cancelleable so preventDefault ...
1
vote
5answers
433 views

jQuery live preventDefault failing on input elements

I have the following snippet of code: $('#messages input').live('keydown', function(e){ if(e.keyCode == 13) { alert($(this).attr('value')); e.preventDefault(); return false; } }); ...
0
votes
2answers
44 views

jQuery prevent input default action

I have an ajax form I would like to prevent from preforming an action when submitted and have tried numerous methods and nothing works. My first method was: return false; and then I tried ...
0
votes
0answers
50 views

How to enable scroll bar when use “ontouchstart/ontouchmove/ontouchend” on android?

I want to make a web page on mobile devices (both Android and iOS) with fingers swipe effect, but when I add event.preventDefault() into ontouchstart / ontouchmove / ontouchend callback functions the ...
0
votes
5answers
40 views

jQuery select box if option 1 is selected

I have a problem writing a script that will prevent default behavior of submit button when option 1 from select box is selected. Here's the code: http://jsfiddle.net/QgZHC/4/ Also on my website I'm ...
0
votes
1answer
37 views

Microsoft Access Nullable Int display zero if value is null, how to display blank

I have a nullable int column in my access. I know this may be trivial but I am trying to find a way to show NULL value as blank. Somehow it just defaults to zero so basically all NULL value are being ...
0
votes
2answers
33 views

jquery append content after erasing previous content

I thought that using .append function previous finding specifyc content in a .json file it will returns only one time content if i put .empty property of a div before .append once again. BUT I'M ...
0
votes
1answer
42 views

jquery avoid multiple requests preventDefault

I need a way to prevent multiple submits: $("#myDiv").click(function(e) { e.preventDefault(); console.log('open'); // submit the form $('#myDiv #myInput').click(function(e){ ...

1 2