IE7 Crashes The Select Box?

Jul 20, 2009

A problem with these code in IE7

<select id="testSelect">
<option value="one">1st option</option>
<option value="two">2nd option</option>
</select>

[code]...

When :

1. select option 2
2. select option 1
3. press remove button

Internet Explorer 7 crashes without saying why.

View 5 Replies


ADVERTISEMENT

IE Crashes

May 28, 2003

I have a DHTML script which crashes IE 5.0 on MAC. How can I solve it...?

View 4 Replies View Related

IE7 Crashes When Using This Script?

May 14, 2009

I am using the following script which keeps crashing IE7. It works fine in Firefox.

Code:
var httpdetail = createRequestObject();
function loadProductDetail(id){

[code]....

View 7 Replies View Related

JQuery :: Tabs With Cycle Crashes In Ie6

Jun 9, 2009

i'm doing a site that uses tabs and cycle together, cycle inside the tabs.. In Firefox (every version), opera, safari works... But when i go with IE6 into the page "Ambientes", the IE6 Crashes... and is not everytime... i am sending a link with a screenshot...

Here is the SS:
<a href="http://img192.imageshack.us/img192/9825/ie6u.jpg">http://img192.imageshack.us/img192/9825/ie6u.jpg</a>
--

[Code].....

When i 'turn off' the cycle, everything works... when i 'turn off' the tabs, everything works too..

View 1 Replies View Related

Clicking On The Menu Crashes Browser?

Sep 22, 2011

Ive made a website for a client using an existing skin. He is using pretty old computers and browsers to view the site, although he isnt currently able to tell me which exact browser he is using.

This is the site: [URL]

He tells me that when clicking on a menu item on the top blue bar, his browser crashes. Is this possible, and does it sound like a javascript issue, because I beleive the menu has some jquery in it for the dropdown and I wouldnt have through straight html could crash a browser, even if it is old.

View 1 Replies View Related

Window.open Crashes IE 7 When IE 5.x Also Running

Nov 13, 2006

I run multiple IE standalones simultaneously on my PC for CSS testing purposes (see this page for more).

I have discovered that, if you have a version of IE 5 running (tested with 5.0 and 5.5), and, in IE 7, run a popup window script that uses window.open, IE 7 will crash.

Not really a problem - I can always quit the 5.x browsers when I need to test javascript - but thought it was worth passing along.

View 1 Replies View Related

Regular Expressions Crashes My Browser / Why Is So?

Dec 20, 2010

Explain to me why this doesn't work? code... All it does is crashes my browser.

View 1 Replies View Related

Error - Multiple Popups Crashes IE While Trying To Pass Value Between Two Windows

Mar 20, 2009

I've lost almost half a day to identify/recover this script error.I often got this type of error.

I've parent window with two text field.There user can either enter the value on the field or choose popup option to search & select the value.When user open the popup & selects value, the selected value gets populated to parent window text field & close popup window. Everything working well, but sometimes after closing popup window, it keeps on opening same popup window multiple time until my internet explorer get crashed. It happens only in IE.

Here is the snippet of parent window:

Here is the snippet of popup.html:

View 1 Replies View Related

JQuery :: <object> Tag Repainting Several Times Crashes Custom External Plugin

Dec 22, 2010

I have a tag <object> in a page..

"<object type="application/x-my-app" id="", I_rc_3D_c, "" width="100%" height="100%">", "<param name="platformKey" value="",Platform_Code_c,"">",
...
"</object>"

and the jquery1.4.4 JS api library..

The problem is that when the page is loading the first time this object is loaded several times..

View 2 Replies View Related

AJAX - Posting Info, Code 200 But No Response, Crashes Apache Http?

Feb 16, 2010

I have managed to succesfully post the data to the php page... (i can see using firebug that it IS being sent) but i get a message Quote: Apache HTTP Server has encountered a problem and needs to close and the response is empty... what am i doing wrong?is possibly something to do with the space in the value of the options?

Code:
<head>
<title>Auto suggest</title>
<script src="ajax.js"></script>[code].....

View 2 Replies View Related

JQuery :: Select All / Select None *text* Links In A Form That Call A Jquery Function To Select All Or Select No Checkboxes?

Jun 16, 2011

I've seen a variety of implementations around that enable selecting all or no checkboxes by using a checkbox to toggle that choice. However, I'm trying to find a way like this: I have two text links on my page: Select All, and Select None. How can I get those links to call a jquery function to select all or select no checkboxes in my form? As a little food for thought:

<head>
$(function() {
//function for selecting all or none...is there a way to make a single function that passes in a parameter to differentiate between selecting all or selecting none, or do I need a separate function for both?[code]....

View 2 Replies View Related

Multiple Select Boxes :: Make The Select Boxes Appear AFTER You Select The Field Before?

Jul 24, 2009

<script language="JavaScript" type="text/javascript">
<!--
/*[code]....

// This script supports an unlimited number of linked combo boxed

// Their id must be "combo_0", "combo_1", "combo_2" etc.

// Here you have to put the data that will fill the combo boxes

// ie. data_2_1 will be the first option in the second combo box

// when the first combo box has the second option selected

// first combo box

data_1 = new Option("Business Cards", "$");
data_2 = new Option("Club Flyers", "$$");[code].....

I have this code, and I was wondering if it is possible to make the select boxes appear AFTER you select the field before.

View 8 Replies View Related

Pass Text From One Select Box To Another Select Box Using The For Loop To Check The Existence Of An Item But It Is Not Working?

Aug 28, 2010

i am trying to pass text from one select box to another select box. The logic is if 10 are added, no more passing must happen. Also if an item is already added, it mustn't be added again.I am using the for loop to check the existence of an item but it is not working: what am i doing wrong?

Code:
function PassSelectValues(){
//pass values from select boxes to select boxes
var counter;[code]....

why isn't counter incrementing at all? The alert message box does appear saying item exists but the item gets added anyway.

View 1 Replies View Related

Disable Select Until User Puts Mark In Check Box. Then Enable Select?

Jun 26, 2010

disable select until user puts mark in check box. Then enable select.I have two select box's on a page. The first asks what product, the second is based on the first and presents a list of pdf's according to which product the user selected. (yes, multi dimensional)What I have works fine, but now i need to make the user put a check mark in a check box before the First SELECT box becomes enabled/available.So basically, when they agree, they can get the download.Here are my select boxes.

HTML Code:
<form>
<select name="category" style="width:180px"></select>
<select name="site" style="width:180px" onchange="openLink(this.value)"></select>[code]....

(ignore the The 'open' button. It's there in case the default option is what the user wants, so they don't have reselect via the select box.)

1. How do I disable the select boxes by default on page load?

2. How do I detect that the user has put a tick in and the enable the disabled Select box?

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

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 :: Auto-select A Select Box On Postback With User's Selection

Feb 12, 2010

I have a ColdFusion page with a select drop down list. On submit, I'm storing the value in a cfparam and trying to use jQuery to auto select that particular option. Currently I'm using :contains but this is unacceptable because it selects the last item that contains the cfparam.

$("option:contains('<cfoutput>#form.company_type#</cfoutput>')").attr('selected', 'selected');
Is there something like this:
$("option").equals('<cfoutput>#form.company_type#</cfoutput>')").attr('selected', 'selected');

[Code]....

I willconsider other alternatives to accomplishing my objective.

View 1 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

Get A Select Box To Display Text From A Database In A Div Tag From The Select Box Populated By A While Loop

Jan 21, 2011

I'm trying to get a select box to display text from a database in a div tag from the select box populated by a while loop that also pulls from the database. The only way I can do this is from a javascript written by sending it over to a second page and I need it on just one page. Here is my code below:

<?php
session_start();
$q=$_GET["q"];
$num = $_GET['num'];
$test = $_GET['oneGram1'];
$_SESSION['oneGram']=$test;
[Code]...

Even if this is a wrong way to go about doing this can someone post just a simple script using a select box and displaying data on the same page?

View 9 Replies View Related

Ajax :: Create A Multiple Select Menu Where Can Select Several Different Items

Oct 10, 2010

We have a list of items that each has a different quantity available. So I am going to create a multiple select menu, where they can select several different items. So, how can I make it that when they leave the field it sends all the different ones to the ajax program to build all the appropriate quantity forms?

[Code]...

View 1 Replies View Related

Modify The Default Option In A Select Changing Another Select

Oct 26, 2005

I wish to know if is possible to change the selected option in a SELECT selecting a determined option into another SELECT in the same form.


E.g: When I select the option "Istruction" in the SELECT named "A" I wish the SELECT "B" change the default state from "empty" to "other"

View 1 Replies View Related

Removing Select Option Removes Entire Select

Jun 21, 2006

I'm using Prototype and scriptaculous either, but here it is:

I have two select areas and scripts to transfer items between the two.
Everything works great in FF, but in IE when an option gets removed it
removes the entire select area. Has anyone ever seen something like
this before?

View 1 Replies View Related

JQuery :: Select Dynamically An Option In A Dropdown Select?

Aug 11, 2010

According to [URL] intended way for jQuery to change dynamically the selected option of a dropdown select control isassigningthe desired text instead of the value. I found this way veryinconvenient (data structures usually deal with value codes, not value descriptions) and it seems to work only sometimes.

Trying different options I came out with this approach that seems to do the job so
far:

function setSelect(pID,pSelectedValue)
{
$('#'+pID + ' option:selected').removeAttr('selected');

[Code]....

View 1 Replies View Related

Jquery :: Select All Values Of A Multiple Select List

Jun 23, 2009

is there a way to select all values of a multiple select list by default?

View 3 Replies View Related

Onclick Event To Select An <option> Inside The <select>?

Feb 25, 2009

if i have a <select> and i when i click an image i want to do an onclick event to select a specified option inside the <select> is this possible?

View 1 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







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