Hide Div Based On Conditions?

Nov 24, 2010

I am trying to hide div based on conditions..This is the scenario: the div should never appear again for that user, until i write another server side message.lets say i write a message today saying " we are really sorry, but the website will be don for one hour today" and you login today, the message will be displayed, when you click close its closed,it wont appear again for you, until i post another message,but each message would have an expiration date, if i post a message which would be displayed to every user, i should decide how long i want it displayed, maybe 24 hrs, so in 24 hrs the message should no longer display.

View 5 Replies


ADVERTISEMENT

Submit Button Action Based On Different Conditions?

Mar 16, 2011

I want my submit button to link to different pages, based on the value of a particular variable (let's call it total).

So, if 18 < total < 20, the submit button should redirect to page1.html
If 16 < total < 18, the submit button should redirect to page2.html
If 14 < total < 16, the submit button should redirect to page3.html

I have created page1.html, page2.html....page10.html. how should I link my submit button (I have only *one* submit button) to different pages based on different conditions?

View 9 Replies View Related

JQuery :: Hide/Reveal Under Certain Conditions?

Dec 30, 2010

I have been building a website and am in the process of integrating a shopping cart into the website. I have colors for the products in a <select> but there are a few colors that require an extra processing step that would cost extra to the customer if they chose those colors. However I don't want that extra processing step to be visible unless those certain colors are selected because I feel it would be confusing to the customers.

View 1 Replies View Related

JQuery :: (.) Period In Value Field - Show/hide A Div Based Based On The Selection Made Via A Dropdown

Apr 9, 2010

Im using a jQuery script to show/hide a div based based on the selection made via a dropdown.

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

The problem im having is that the value used in the dropdown lists are price values eg 10.00

Consequently jQuery seems to interprit these as css notations, meaning the code doesnt work.

View 4 Replies View Related

Hide Elements Based On ID

Oct 13, 2005

I've got the following function which works perfectly...

for (x=1;x<howMany;x++){
what = "b_" + whichProcess + "_" + x;
document.getElementById(what).style.display = ''
}

the function will pass how many elements there are to be changed along with their ID numbers... it's used to hide rows on tables... eg:

<tr id="b_1_1"></tr>
<tr id="b_1_2"></tr>
<tr id="b_1_3"></tr>

the above hide perfectly... but I have other rows such as

<tr id="b_1_1"></tr>
<tr id="b_1_2"></tr>
<tr id="b_1_3"></tr>
<tr id="b_2_1"></tr>
<tr id="b_2_2"></tr>
<tr id="b_3_1"></tr>

my question is how can I make a loop which will hide ALL elements which begin with "b_"

View 2 Replies View Related

Show - Hide Div Based On Cookie Value

Nov 12, 2009

I am trying to finish a script that shows a particular div based on the last 2 chars in the cookie value. I have the cookie part done. how to show hide part.

View 7 Replies View Related

Show - Hide Div Based On Checkbox ?

Aug 21, 2011

I know from scouring the Web that this is a very common Javascript question, but I have a twist on the question which is giving me headaches, and I hope some of the brilliant minds here at DaniWeb can help show me the error of my ways.

Say a user has checked a checkbox when submitting a form. I have a PHP script that records that check in a MySQL record. Later when they visit the page, the PHP script shows the checkbox as being checked. That's all working fine.

Now here's what I'm TRYING to do: Since the checkbox is checked when the page loads, I want a certain div to show up. And when the user UNchecks the checkbox, I want the div to go away. Simple, right?

Here's the Javascript I've placed in the header:

In the CSS, I've styled a div thusly:

And here's what I'm doing in the <body>:

This should show up when you click Yellow Box. And it should go away when you click it again. </div>

When I uncheck the checkbox (first click), nothing happens: the div still shows up.

Then when I re-check the checkbox (second click), the div goes away.

And then when I un-check the checkbox again (third click), the div comes back.

In other words, it's doing the OPPOSITE of what I want.

It seems that when I click the checkbox the first time (to uncheck it), the Javascript pulls an empty value. Only with the second click is it finding a value ('none').

View 3 Replies View Related

Show - Hide A Div Based On A Cookie?

Dec 28, 2009

I have a script I am trying to use to show or hide a div id. It uses a cookie, set on link click, to remember if the div should be displayed or not.

It works, but I'm having two problems:

1) The function only shows/hides the first instance of the div, not all instances.

2) Reloading the page after an initial cookie set causes the div to always initially be displayed regardless of the last cookie value (cookie seems to automatically re-set itself to 'tutor-show').

Here is the code:

You can see it in action here: uomeds{dt}com/cbl/cbl-2.htm

View 1 Replies View Related

Hide Table Row Based On Column Value?

Mar 19, 2011

how to do this with javascript for a table that i have made in php and html. I want to hide the row for the table based on the value inside my first column for each row of the table. Like if column 1 has "apple" inside it, then the row would not be shown. My table.php file that has the table i want to do this for:

Code:
<script language="javascript">
imageX1='plus';
imageX2='plus';
imageX3='plus';
function toggleDisplay(e){
imgX="imagePM"+e;
[Code]...

View 6 Replies View Related

Show - Hide Based On Content Within Div

May 6, 2011

I would like to show or hide a header element (e.g. <h3></h3>) based up a div tag that either contains content or not. The content is dynamically added or shown, but the header element isn't, which results in having the header element shown with no content below it many times.

Here's an example:

View 2 Replies View Related

Disable My Ad / Hide Div Based On Where User Came From?

May 6, 2011

As my question states, I want to disable my ad from showing if the user clicked to my site via certain portals such as google search or digg.com. How can I do this?

View 3 Replies View Related

Cookie Based Hide Show Div Tag ?

Oct 17, 2011

I'm basically looking for script that uses hide show functionality. with the addition of save state ability based on a cookie that remembers what item the user last expanded for his/her previous visit.

In other words lets say a user expands a link that has a list of information.

Then the user leaves the page and comes back to the same page. It would be ideal if that page remembers(via cookie) what the user last expanded.

Does ANYONE... know where or can perhaps paste some sample code?

View 2 Replies View Related

Hide / Show Various DIV Based On Function

Aug 6, 2009

I have a script to show and hide various divs based on a function & var. The problem I am having is that when ANY of the variables ('hate', 'ok' and 'love') are passed all 3 different feedback forms ('FeedbackHate', 'FeedbackOk' and 'FeedbackLove') appear, not just the one I want.

Here is the JS:
function sitesurveyswitch(emotion) {
var e = emotion;
document.getElementById('site_survey_hate').style.backgroundPosition = '0px 0px';
document.getElementById('site_survey_ok').style.backgroundPosition = '0px 0px';
document.getElementById('site_survey_love').style.backgroundPosition = '0px 0px';
document.getElementById('FeedbackHate').style.display = 'none';
document.getElementById('FeedbackOk').style.display = 'none';
document.getElementById('FeedbackLove').style.display = 'none';
if (e == 'hate')
document.getElementById('site_survey_hate').style.backgroundPosition = '-80px 0px';
document.getElementById('FeedbackHate').style.display = 'block';
if (e == 'ok')
document.getElementById('site_survey_ok').style.backgroundPosition = '-80px 0px';
document.getElementById('FeedbackOk').style.display = 'block';
if (e == 'love')
document.getElementById('site_survey_love').style.backgroundPosition = '-80px 0px';
document.getElementById('FeedbackLove').style.display = 'block';
}

And here is the code related to this function:
<div id="siteSurveyBox">
<span id="site_survey_hate" onclick="sitesurveyswitch('hate');return false;"></span>
<span id="site_survey_ok" onclick="sitesurveyswitch('ok');return false;"></span>
<span id="site_survey_love" onclick="sitesurveyswitch('love');return false;"></span>
</div>
<div id="FeedbackHate" style="display:none; margin-top:-28px;">
FEEDBACK FORM IS HERE
</div>

<div id="FeedbackOk" style="display:none; margin-top:-28px;">
FEEDBACK FORM IS HERE
</div>
<div id="FeedbackLove" style="display:none; margin-top:-28px;">
FEEDBACK FORM IS HERE
</div>

View 2 Replies View Related

JQuery :: Show / Hide DIV Based On Selected Value Of Tag

May 29, 2010

I have a simple jQuery code that shows or hides a DIV based on the selected value of a select tag. Currently it looks like this and it's working fine:
if (selected == "0") jQuery("#divPublishDate").show('slow')
I want to add an else so that the if the value is anything other than 0, I want to hide the div. What's the proper syntax in this case? I assume this is the short version of an IF statement without the { }.

View 2 Replies View Related

JQuery :: Hide / Show Based On Scroll?

Mar 29, 2010

I've got a fixed div that has a fixed tab as a trigger. I'd like to only show the trigger tab when the user scrolls down the page "X" pixels from the top (say like 200px). Can someone point me in the direction of implementing this?

View 4 Replies View Related

JQuery :: Hide Button Based On Combo Value

Jun 15, 2009

I have a select option like this:
<select id="color" name="color">
<option value="">Select a color</option>
<option value="1">Red</option>
<option value="2">Green</option>
<option value="3">Blue</option>
<option value="4">White</option>
<option value="5">Black</option>
</select>

And a button:
<div id="buttons" class="sportelloamiacque_formline">
<input type="submit" id="submitButton" name="submitButton" value="Continue" />
</div>
How can I hide the button is the combo has "Select a color" selected and show the button when the user select a color?

View 2 Replies View Related

JQuery :: Show/hide Div Based On URL Parameter?

Feb 13, 2010

I have a div that should be hidden on default, but when a certain URL parameter is present, then the div is visible.

[Code]...

View 3 Replies View Related

Show - Hide Div Based On Select Box Choice

Jun 22, 2011

I have a select box where the value must be passed via the form. If the users selects choice B or Choice C then I want a specific div to show. If they choose choice A then I want the div to hide or remain hidden. It should be hidden on page load.

Code:

View 1 Replies View Related

Hide Columns In Tables Based On Variables?

May 28, 2010

I have a table with 1 row and 5 columns. I want to hide each column based on specific variables in the web page. Is there a way to do that. I tried a <div> tag and the below code, but it says you cannot put a <div> tag in a table etc.

Code:
document.getElementById('hiddenYearLeft').style.display = "none";
document.getElementById('hiddenYearLefta').style.display = "none";

View 8 Replies View Related

Show/Hide Div Based On Select Box Choice?

Jun 22, 2011

Ok so I have a select box where the value must be passed via the form. If the users selects choice B or Choice C then I want a specific div to show. If they choose choice A then I want the div to hide or remain hidden. It should be hidden on page load.

<select name="Event_Type_ID">
<option value="1">Choice A</option>
<option value="2">Choice B</option>

[code]....

View 2 Replies View Related

Show/Hide Buttons Based On Radio Selection

Jul 20, 2005

I have a form with three radio options. And I have three buttons:

<input type="submit" name="mainform_action" value="Edit Data">
<input type="submit" name="mainform_action" value="View Data">
<input type="submit" name="mainform_action" value="Delete Data">

If the first radio button is selected, I only want all three buttons to be
visible to the user.

If the second radio button is selected, I only want the "Edit Data" and "View
Data" buttons to be visible.

If the third radio button is selected, I only want the "View Data" button to be
visible.

Is it possible to accomplish this in Javascript? In particular, I want to
continue using the "input type=submit" buttons without having to create my own.

View 3 Replies View Related

JQuery :: Hide Or Remove Based On Content Of Different Div OnLoad?

Mar 18, 2011

how to properly evaluate a value in a document onLoad. Caveat - I am working on this via a CMS (BusinessObjects), so don't have 100% control over what's passed in to the page.

HTML:
<div id="home_alert"><hr />
<h2>MEMBER ALERT!</h2>
<p><a href="/member-home.htm">LOG IN to read new items!</a></p>
</div>

[Code]....

View 1 Replies View Related

Display Or Hide A Menu Based On The Current Url In A Php Page?

Jul 15, 2009

How do I display or hide a Javascript menu based on the current url in a php page?I want to specify when a java menu appears on a page based on the current url - does anyone have a script for the vars and conditional statements to make this happen - it would be something like this in natural language:

<javascript>
if currenturl = http://jemmakidd.com/categories.php
then displaymenu

[code]....

View 5 Replies View Related

Show / Hide Content Of Sub Divs Based On Whether Input Is != / =

Aug 9, 2009

how can I show / hide the content of sub divs based on whether the input is != or = and be able to repeat this.I tried to hide the sub divs using , onclick if bla bla = '' ;document.getElementById('hideme').innerHTML = ''; which works, but once I try to enter a new input, then nothing happens, even if the content of the sub divs is = input.

View 2 Replies View Related

Display/Hide DIV Based On Radio Button Input?

Dec 1, 2009

I'm fairly new to Javascript and would be grateful for any help you can give me. I've had a search on Google and found a couple of potential solutions but nothing seems to work quite right for what I need.

Basically I have a form with several questions followed by Yes/No radio buttons. Dependent on which answer is given, I want to display a different message above the text box.

For example, if you answered 'no' to a certain question then the message above the text box would change to say "Please fill in additional information" or something along those lines.

[Code]...

View 3 Replies View Related

Show / Hide Divs Based On POST Value Sent From Another Page

Apr 26, 2011

The two page sections you see on the page "One Time Gift" or "Monthly Subscription" are normally hidden via a document.write via a body onload. Generally, all of this functions well. But, I want to expand the use a bit here so I want to pass a $_POST value to this page from another page which hides or shows these two sections based on this passed value. So, if the value in "once", I want the div with the id="onetime" to be visible and the other div to be hidden. If the value is "monthly", then the opposite would happen. Now this is supposed to all happen as the page loads because we are just arrivng here from the sending page.

View 9 Replies View Related







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