JQuery :: IE: Select Change Triggers Pop-up Blocker?

May 14, 2009

I have a wee bit of code that handles a select list change to load some content via AJAX. In IE 7 & 8 (works a treat in 6!), clicking on the select list triggers the pop-up blocker thingy. My code certainly does not open a new window or anything like that:

$('#group_nav').change(function()
{
var group_id = $(this).val();[code]....

adminNavSetup() is the function this block of code resides in.However, commenting that out has no effect. Note that the select list doesn't even open; a click is all it takes. Also, no request is made to the server.why the pop-up defense would be triggered like that?

View 5 Replies


ADVERTISEMENT

Expected '' Error - Select Menu 'Customer' Which Triggers A 3 JS Functions - To Populate 2 Extra Select Menus

Aug 18, 2010

I'm having problems with a Javascript 'Lookup' function.

Basically, I have a select menu 'Customer' which triggers a 3 JS functions, to populate 2 extra select menus.

Using IE Developer Tools, during debugging, I get this error: Expected ';' Error

This relates to either: eval(ajax_CustContact[index].response); OR eval(ajax_CostCentreContact[index].response); (it's a bit random, as sometimes it works, sometimes it doesn't)

I have tried changing the 'custid' to 'custname' to check whether it was an integer causing the problem, but had the same problem.

View 4 Replies View Related

JQuery :: Change Which Attribute On Form Field Triggers Validation?

May 22, 2009

Can anyone tell me how i can change which attribute on my form field triggers the validation?currently it appears the be the name attribute. So in my Rails app using Rails helpers, it sets the name to somthing like formname['fieldname'] and the whole name.in my script if i do something like [codde]it causes the script to break.

View 6 Replies View Related

Ajax :: PHP Select Jquery - Make The Select Change Based On What Is In The Databse

Jun 17, 2011

I have a php function that list all of the countries from my database as a select option, then based on what the user selects for their country im using jquery to make an ajax call and get all of the states/regions for that country. This part works fine. I'm running into an issues, as when a user login's in to edit their profile, how would I make the select change based on what is in the databse.

[Code]....

View 3 Replies View Related

JQuery :: Select Change > Remove An Item From The Select Field?

Mar 19, 2011

What I try to do is the following..let's say I have this form:

<select name="sSelectMe" class="someclass">
<option value="">select an option</option>
<option value="1">option 1</option>

[code]....

View 1 Replies View Related

JQuery :: Loading SELECT On Change Of Other Select?

Jun 23, 2009

This is what I'm trying to do:When a user selects a group in the first SELECT box, another SELECTbox should be loaded from an external PHP-file (using MySQL), based onthe group-id of the first SELECT box.I use this code:

$('#kiesgroep').change(function(){
$.post("<?php echo base_url();?>php/kies_speltak.php", {
groepid: $('#kiesgroep').val()

[code]....

View 3 Replies View Related

JQuery :: Hover Triggers On Hidden Div?

May 23, 2011

I have a dropdown style navigation menu which contains a <div id="MenuBar1"> holding the main heading of the menu item. I then a child <div id="DropBox1"> within that, that drops down on mouseover of the parent <div id="MenuBar1">. I am doing this using the following functions (I've tried all these variations with limited success)...

function DropDown3() {
$('#DropBox1,#DropBox2,#DropBox3,#DropBox4,#DropBox5').css({ opacity: 0.0 });$('#MenuBar1').hover(function() {
$('#DropBox1').stop().animate({ height: '120', opacity: 1.0, duration: 'slow' });
},

[Code]....

View 1 Replies View Related

JQuery :: An Event That Triggers After CSS Loaded?

Apr 3, 2010

I have a couple of links on my page (inside a <div id="theme-selector">) which allow you to change the CSS stylesheets:

$('#theme-selector a').click(function(){
var csslink = $(this).attr('href');
$('head link').remove();[code]...

Now, after I've changed the style on the page, I want to get the new background color, using the following code (which I put after the

$('head').append call):
var bgcolor = $('body').css('background-color');
alert(bgcolor);

The problem is, I think, that it takes some time for the browser to download the new stylesheet and I sometimes get the old background color in my alert message. Is there some event I can bind that will only alert me after all the stylesheets are loaded on the page? At the moment, all I can think of is using a setTimeout(function(), 5000); which isn't great, because what if it takes longer/shorter to load all the CSS on the page.

View 1 Replies View Related

JQuery :: Pass Variables From Multiple Triggers?

Aug 23, 2009

I have multiple triggers and I am trying to pass variables via a "rel=" tag (which are unique id's) for each trigger I can get most of it working, problem is that since there are multiple triggers with id="newsTrigger" only the first listed trigger works Using PHP/mySQL. An example trigger is:

while loop{
echo '<span id="newsTrigger" style="font-size:0.8em;" rel="'.
$rowNewsid[$counter].'"><a href="'.$rowNewsPermalink
[$counter].'">'.substr($rowNewsHeadline[$counter],0,40).'</a></span>';
}

The above outputs a large number of rows with the same span id of "newsTrigger". When a user mousesover any of the newsTrigges I am trying to get an ajax dialog to load up content based on the id that is being passed through the rel tag. How do I do this? The javascript so far is:

<script>
$(document).ready(function(){
$("#newsTrigger").mouseover(function() {
var newsid = $(this).attr("rel");

[Code].....

View 1 Replies View Related

JQuery :: Hover Queue - Div Triggers Another Div To Animate

Feb 8, 2010

I am having problems with the hover queue, see [URL] Now i found this plugin [URL] but assumes you are animating $(this) i my case a div triggers another div to animate

[Code]...

View 7 Replies View Related

JQuery :: Autocomplete (Not Plugin) In Firefox Triggers Which Event?

Apr 28, 2010

I have the following question: What event could be or is triggered when someone fills in a inputfield using the autosuggest that is build in in browsers? Like for example my email that always comes back on email input fields. I have tried the change and keyup event but they don't work. What event could be or is triggered when someone fills in a inputfield using the autosuggest that is build in by browsers.

View 1 Replies View Related

JQuery :: Triggers Ajax Calls On Button Click?

Dec 7, 2010

I have a code that triggers ajax calls on button click, it all works fine but every now and then, the click triggers 2 AJAX calls. When i look at these calls in FB i see they succeeded (they get the expected response) but i get Timeout (I've set it to 3 seconds).

View 1 Replies View Related

JQuery :: Ready Function - When The Page Is First Loaded - It Triggers The Alert

May 1, 2009

This page: [url] is linked to 1.js which has this code:

When the page is first loaded, it triggers the alert. It doesn't seem like it would because it is in the livequery function. Why does it do that?

View 2 Replies View Related

Window.open And Pop Up Blocker

Jul 23, 2005

I have a contact page which is opening in a new window using
window.open. Since this is called when the user clicks a link, pop up
blocker don't block it.

However, I want to show a survey after this window has been closed. I
find nothing else but to use window.open. But this time, I use the
onunload tag in the opened window. This is blocked by pop up blockers.

Is there a way to print my survey, whatever it is, from a window
opened by the user and poping on the onunload event?

View 3 Replies View Related

Popup Blocker Detection

Jul 23, 2005

We have a database application that runs in a popup Internet Explorer
application window. The reason for this is to isolate the casual user
from the address bar and the typical IE navigation buttons.

The application has a browser test page that displays an error message
when a popup blocker is found and opens a popup page stating the test
was successfull if there is no popup blocker.

Is there a reliable method (preferably javascript) for detecting the
major popup blockers (SP2, AOL, Yahoo, Google, MSN, etc.)? We currently
have a temporary solution in place which works OK but we would like to
have a better solution.

We have already reasearched this on the net, as well as spent a few
hours trying different options.

The application is designed to run on MSIE only so the solution can be
Explorer specific.

View 26 Replies View Related

Popup Blocker Code

Jul 20, 2005

How do pop-up blocker programs work? Do they intercept http transactions and strip out window.open() commands? Is there a single methodology?

View 9 Replies View Related

JQuery :: Clicking A Link Triggers Unwanted Scrolling Effect In Slider?

Oct 17, 2010

I am having a problem with a site I am working on right [URL]..clicking on the "Kontaktieren Sie uns"-Link it triggers an unwanted scroll in the slider just underneath it. I am also getting a java script error when I view the site on ie/windows. I am clueless since I am not at all confident with java script.

View 1 Replies View Related

JQuery :: Datepicker.ui - Validate Plugin -- Triggers 'invalid' When Date 1st Picked

Jul 23, 2010

I'm using the datepicker.ui in a form that also uses the validate plugin. The form happens to use the accordion functionality found here, but I've also tested this in a simpler form that uses the standard syntax for both scripts.

When the user initially picks a date using the datepicker, validate runs and flags the input as invalid, even 'though the field isvalid. choosing another date, or choosing the date a second time, sets the field to valid.

Simplified HTML:

View 1 Replies View Related

If A Popup Blocker Blocks Your Window

Nov 30, 2005

The first page is the Index page, with a new post link which popups the second page.

The Second page (which loads OK) has a link that submits to the third page,
(below).

This third page closes itsself and Loads a new page into the Index page.

But problem is if the Index page is closed it needs to pop up the newpage.htm which get s blocked. Code:

View 1 Replies View Related

Create Popup Window Bypass IE-blocker?

Jul 17, 2009

I have a jsp page, which click a link and refresh the current page, and ALSO create a popup window which links to other jsp file to generate a file for download.My problem is I must create such popup window, with out blocked by IE-browser, any method, javascript, css....servlet, is ok.

View 1 Replies View Related

Pop Up Thad Doesn't Get Stopped By The Firebird Popup Blocker

Feb 1, 2004

I got a problem. I'm opening my flash pge in a popup that comes up when the site loads, but the fireburd popup blockers stops it. Anyone got a script that doesn't get blocked?

View 3 Replies View Related

Change Options Of Select Based On Selection In Other Select

Mar 20, 2010

I've been having problems getting my select option to change the options of another select option. I'm not much of a javacsript coder, so I'm at a lost.When I select the first option nothing appears in the second option.

View 8 Replies View Related

Change 2nd Select Values Based On 1st Select?

May 4, 2010

I am working on a class registration system that requires students to register for a main class (101, 102 or 103). The student is supposed to select one main course as well as provide a second choice in case the first is not available. I have two dropdown select fields to capture data

1) Choice -1: 101 / 102 / 103 ( Student needs to select one - Reading the classID from classes table)
2) Choice -2: 101 / 102 / 103 ( If student selects 101 in Choice-1 then the only classes available under Choice-2 should be 102 or 103).

How can I accomplish the above? Further to this there are two fields on the form where I would like to auto populate based on what they have selected in Choice-1 and Choice-2.

For Example:
If a parent selects choice1: 101 the child Choice1 field should autopopulate with 100.
If a parent selects Choice2: 201 the child Choice2 field should autopopulate with 200

View 6 Replies View Related

One Link Triggers Two URLs?

Jul 23, 2005

I'm working on a project that has a logout button, but (like most
things) it's kind of a hack. I'd really like the one logout window to
actually hit two logout URLs. I only need to display one window that
a person has logged out, but would like to end the session in both.
I'm thinking I could use something like Code:

View 2 Replies View Related

Click On Scroll Bar Triggers Onchange In IE7?

Jun 17, 2009

I have a text box, to which an onchange event is associated. We show suggestions to the user just below the text box (Google suggest style) based on what he types. The suggestions are shown in a table under a div (which will be hidden when page loads).When the suggestions are more than 10, a scroll bar is shown. The issue now is the following:1. User enters a character in the text box (value changed in the box)2. The suggestions are shown (more than 10, so scroll bar comes up)3. User clicks on the scroll bar to scroll down.This triggers the onchange event of the text box. This happens only in IE7+. Same works fine in Firefox.

View 1 Replies View Related

JQuery :: Change Event On A Select Box?

Sep 7, 2010

I'm currently having a problem with getting a change event to fire when changing the values of a select box. I've put together the sample code below to show what I mean.

<html>
<head>
<script type="text/javascript"

[code]....

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved