Show One Image Or Another Depending On The Value Of A Field?

Apr 23, 2010

I have a page that is displaying all the field values for an object. On that page, I want to display one image if the value of the field Reports_to is Jim, and another image if the value of the field Reports to is Bill. I've tried the following.

<script language = javascript>
var reportsto = document.getField('field_reports_to').value;
if (reportsto == �Jim�)

[code]....

View 6 Replies


ADVERTISEMENT

JQuery :: Show Image Depending On Wheter Textfields Are Filled Or Not?

Jan 5, 2011

What I would like to do, is to show one image ('1.jpg') if three textfields in my form are filled, but another image ('2.jpg'), if all or any of the fields are blank.

View 1 Replies View Related

JQuery :: Validate One Field Depending On Another Field Value

May 1, 2010

I am new in jquery and learning it.I am going to make a form validation where if the radio button is checked then the form validation will take place in particular one field ie file field and all other fields will be validated normally. Here is my code:

[Code]....

View 12 Replies View Related

Code To Show GIF / SWF Depending On OS

Aug 3, 2011

This has probably done a million times, and it's probably somewhere on this forum, but for the life of me, I can't find a thread on it. Maybe I'm using the wrong search words. The only one's I can find is a browser detect of explorer.This is what I am trying to get accomplished (maybe someone can point me at a good write-up):I'll write it in a sort of logic-statement language (I'd like to have this in a table cell so that it will only show one of two banners. Either a GIF/JPG or SWF depending on OS):[code]

View 14 Replies View Related

Disabling A Text Field Depending On 2 Options?

Aug 30, 2011

Not 100% sure why or how to make this work.I have 5 options in a select drop-down. Only two of them are to disable a text field. I have written it successfully to disable on one option. How would I add the second option? I have tried many different ways, and i know its something small that i am missing.Below is the code that does not work but shows the 2 options that disable my text field.

<script type="text/javascript">
function type_disable() {
var qr_type = document.getElementById('qr_type');

[code]....

View 3 Replies View Related

Show Hide Table Row Depending On A Variable?

Jan 28, 2010

I have a multipage form. I can put data entered in hidden form elements from previous pages. I want to show or hide table rows depending on this data value.
For example, I collect a list of names in first form, but if some names are blank I dont want to show the table row associated with that name to collect more data.
I have seen loads of code to toggle rows but cant find any which shows me how to toggle on a variable.

View 2 Replies View Related

Hiding Show Div's Depending On Select Option?

May 26, 2010

I want to hide/show div's in my HTML depending on the selected option of a listbox. I don't know what I'm doing wrong.

Code:
<HTML>
<HEAD>
<SCRIPT type="text/javascript">
function SwitchHiddenDiv(){
switch

[Code]...

View 6 Replies View Related

JQuery :: Show/hide DIV Elements Depending On Select Value?

Aug 4, 2010

how one can show and hide a div element using a pulldown menu. i need the different selections in the pulldown menu to show hidden DIV elements on the page. this will be used in a system where i only have access to the template, so the only approach i can use is jquery. how to change it for the specific selectors i need.

<!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">
<head>

[Code].....

View 2 Replies View Related

Table Row Show/hide Depending On The Contents Of A Variable?

Feb 3, 2010

I want to get javascript to show or hide a row in a table depending on whether a value is held by a variable collected in a mulitple part formmail. If only 1 adult fills in their name on the earlier form there is no need to show the row which asks him to agree to membership on a later form page. This is what Ive got so far<form name="frm3" method="post" action="bookingscript.php">

<input type="hidden" name="adult2fn" value="$adult2name" />
<script Language="JavaScript">
var name1 = document.frm3.adult2fn.value;
if(name1 =="")

[Code]....

View 7 Replies View Related

Show Text In Same Area Depending On Which Link Is Clicked

Mar 30, 2004

I want to have several text links (not buttons) on a page and when someone clicks a link text appears explaining the link. If they click on a different link the text is replaced with the new text.

View 4 Replies View Related

Depending On Radiobutton Diffrent Option Show In Dropdown Box?

Feb 11, 2011

I am trying to make a form that after selecting a certain RadioButton i want the value of that radio button to be changed in to a JavaScript varible, iv tried document.myform.RType.value but wont seem to work.Currently in this code i am simply trying to disply the value of the RadioButton selected in the drop down box just so i know its working. I will then work on changing value of the drop down box depending on the RadioButton choice. So if anyone could help with the getting radio button value to a varible that would be great and advise of the changing value depending on radiobutton vlaue that would be amazing.

Code:
<body>
<h2><span><a href="#" onclick="expandSection('section1')">Basket click to expand</a></span></h2>
<div id="section1" class="section">
<span>

[Code]...

View 6 Replies View Related

Change Background Picture Depending On A Drop Down Field Selection?

May 19, 2010

I need to achieve two things upon making a selection from a drop down field:

1) Changing the background picture of a cell.

2) Changing the size of a uploaded foreground picture within the same cell. code...

View 4 Replies View Related

JQuery :: Making Dropdown Show / Hide Depending On Selection

Jan 10, 2011

I have the following code that generates two dropdown boxes in a form, but I would like for the second to be hidden unless the first has 'Software problem' selected. Is it possible to do this?

<p id="parent-menu">
<select name='helpdesk-category' id='helpdesk-category' class='dropdown' tabindex="40">
<option value='-1'>Select a Category</option>
<option class="level-0" value="13">Software problem</option>
<option class="level-0" value="14">Hardware problem</option>
<option class="level-0" value="15">Suggestion</option>
<option class="level-0" value="16">General query</option>
</select>
</p>

<p id="toggle-menu">
<select name='software-category' id='software-category' class='dropdown' tabindex="50">
<option value='-1'>Select a Program</option>
<option class="level-0" value="6">BigHand</option>
<option class="level-0" value="7">IRIS</option>
<option class="level-0" value="8">MS Outlook</option>
<option class="level-0" value="9">MS Word</option>
<option class="level-0" value="10">MS Excel</option>
<option class="level-0" value="11">Oyez</option>
<option class="level-0" value="12">Internet Explorer</option>
</select>
</p>

View 2 Replies View Related

Show / Hide Depending On Form Selection - How Best To Arrange Data

May 13, 2009

I have a big form which I'm tidying up by only showing elements when they become relevant, based on the currently selected input (eg to only show an option for 'waist size' when garment type 'jeans' has been selected). I've done this many times, and probably used a different approach each time, so I just wanted to see what other people do. It's currently along these lines: "If a particular option is selected, then show this element, otherwise hide it".

Code:
//the onclick handler
function checkViewType() {
//go through radio inputs in the cell and check what's clicked
document.getElementById('supplierOptions').style.display=radioCollection.supp.checked?"":"none";
document.getElementById('subCatOptions').style.display=radioCollection.subcat.checked?"":"none";
document.getElementById('subCatTimeOptions').style.display=radioCollection.subcat_sumtype_time.checked?"":"none";
document.getElementById('subCatSumOptions').style.display=radioCollection.subcat_sumtype_sum.checked?"":"none";
document.getElementById('subcat_weekmonth_span').innerHTML=radioCollection.subcat_time_week.checked?"week":"month";
}

But it's a big form, with lots of nested options, and some elements can be triggered visible by several different options. So I'm looking for an elegant way to handle this without a million if..elses. Perhaps an array of element ids and which elements are allowed visible when that's selected.

View 4 Replies View Related

JQuery :: Variable Validation Rules For Same Input Field Depending On Other Fields

May 30, 2009

I have the following html, field xxx requires a number from 0 to 100 when percentage is selected, and 0 to inifinity when dollar is selected.what's the best practice to setup validation for this?the key is to control the maximum value.I have tried depends expression in a max rule, but it doesn't seem that it can satisfy my requirement.

View 1 Replies View Related

Show / Hide Form Fields Depending On Radio Button Selection

May 29, 2005

How to show and hide form fields depending on a selected radio button.

View 14 Replies View Related

How To Hide/show The Rows Of A Table Depending On The Value Selected By A User From A Drop Down List??

Feb 15, 2006

I am maintaining a site which is written in ASP. Now i have to create
some new pages.

In one page we have a table with many rows. Now, I want to enable or
disable(showing and hiding also) 2 rows of this table depending upon
the value selected by the user from a drop down list.

View 4 Replies View Related

Displaying Image Depending On Browser

Mar 12, 2009

Does anyone here know of the javascript I'd use in a situation where I didn't want to display a certain image when the client is using IE6? I'm fine with displaying it in IE7 and Firefox, but don't want it displayed in IE6. The image is a PNG with a transparent background.

View 5 Replies View Related

Display Image Depending On The Domain?

Aug 25, 2009

Is there a script that displays an image depending on the domain?

View 2 Replies View Related

Image Composition Depending On Several Vars

Jan 9, 2007

I want to make a script that composes an image depending on several variables. The image is composed of a base piece of clothing (e.g. t-shirt) on which an image and text can be placed. The color of the piece of clothing; the location of the image, the image itself and the text are variable. Also the font of the text can change. Is there a base script I can use? Or is there a small script that handles a piece of the desired functionality?

Probably this is a thing better done in flash. But I don't know flash and really don't want to either. Code:

View 1 Replies View Related

JQuery :: Resize Image Depending On Page

Aug 12, 2011

I was wondering if there is a way to use Jquery to reduce the amount of images I use on my company website as well as resize them depending on the page they're displayed on. It's just that I feel that's it's very tedious creating 5 or 6 formats for each campaign each with it's own dimensions depending on the page and unfortunately my company doesn't want to implement a Backoffice fed site, which means I have to do it all manually.

View 3 Replies View Related

Repositioning A Layer Depending On Position Of An Image

Nov 3, 2005

I need some help on how to reposition a layer depending on the position of an image? I know this should be somewhere in the forum, but I searched without success.

I mean like this:

<body onload="movemylayer()">
<img src="1.gif" id="myimage">
<div id="mylayer"></div>
</body>

...And when the page is loaded the layer moves infront of the image.

View 1 Replies View Related

DropDown Change Background Image Depending On Selection

Sep 21, 2010

The code below lets a user select a drop down option and a picture changes depending on the selection. I am trying to make it so when you select an option on the dropdown the picture shows up in the center of the screen and in the background behind the text. Here is the code.

<html>
<head>
<style type='text/css'>
#txt {background-repeat:no-repeat;width:200px;height:200px;}
</style>
<script type='text/javascript'>
function div_bg(team){
document.getElementById('txt').style.backgroundImage="url(images/" + team + ".jpg)";
}

</script>
</head>
<body>
<select name='team' onChange='div_bg(this.value);'>
<option name='arsenal' value='arsenal'>Arsenal</option>
<option name='liverpool' value='liverpool'>Liverpool</option>
</select>
<div id='txt'></div>
</body>

View 19 Replies View Related

Re:update Image Depending On Whats Selected Instead Of Images Using Text From Db?

Apr 3, 2009

how to achieve the same affect with the code pmw helped me with several months ago this time around im trying to achieve the same affect instead of displaying one image im wanting to display text but stuff like this depending on what is selected once again it will display the following.the url for this is once again here.how much space,bandwidth,ram for gaurantee and burstable ram and ips etc.. now how can i do this using the following code below.

PHP Code:

?>
<script type="text/javascript">
document.getElementById('plan').onchange = updateRacquetImage;[code].....

View 1 Replies View Related

If Image - Show Image Else Show Default Icon?

Feb 16, 2010

How do I show the default icon for pdf, doc, etc... else show the image? Show the default icon for pdf, doc, etc... else show image.

Default icon:
'<img alt="" src="images/icons/' + sIcon + '.gif" width="16" height="16" border="0"></a>' +
The image:
'<img alt="" src="' + fileUrl.replace( /'/g, '\'') + '" height="36" border="0"></a>' +
Attempted javascript onError but only certain browsers support that or it's my code.
'<img alt="" src="' + fileUrl.replace( /'/g, '\'') + '" height="36" border="0" onerror="this.src=images/icons/' + sIcon + '.gif"></a>' +

View 6 Replies View Related

Show Image In The Image Box Without Stretching Its Original Size Of The Image?

Sep 27, 2011

i have image button i need to display image .if the size of the image button is 100*100 and image size is 50*50 .the remaining space of the image button should be empty.the image should not stretch.

View 1 Replies View Related







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