Efficient Way Of Coding To Not Display Buttons?

Dec 9, 2011

I have two grids, they both display buttons. One grid displays numbers, true or false and yes or no, and the other grid displays letters, true, false, yes and no.

The second grid is not displayed in the code (used css to not display second grid buttons (.answerBtns)) Now using the getButtons() function, if the user selects button "1" in first grid (the grid which you have to open using (Open Grid) link, then it should display button "A" in second grid, if user selects button "2" in first grid, then it should displays buttons "A" and "B" in second grid, if "3" then display "A", "B" and "C" and so on.

Now except using if statements and stating which buttons should be displayed and not displayed depending on the button chosen in first grid, is there a more efficent way of coding this so that the display of buttons in second grid depends on what is selected in the first grid?

If it is using an array can somebody show a sample of this in their answer. You can just do it for one example and then I should be able to use that to fill it for the other buttons.

View 1 Replies


ADVERTISEMENT

JQuery :: Trying To Get More Efficient With Coding?

Jul 1, 2009

This is a FAQ page I built with custom jquery function that toggles the answers open/closed on click of a question, and Im just wondering if anyone has a suggestion to make the code leaner and meaner:

[Code]...

View 1 Replies View Related

How To Display Buttons Using $(this).show()

Dec 10, 2011

I have two grids, they both display buttons. One grid displays numbers, true or false and yes or no, and the other grid displays letters, true, false, yes and no. The second grid is not displayed in the code (used css to not display second grid buttons (.answerBtns))

[Code]...

View 1 Replies View Related

Display A Text Value For Radio Buttons?

Sep 11, 2010

I am building an online store where the customer can select custom parts. I'm quite new to javascript, but I've managed to create a radio button list, where the price is added from each section. I would like a box to show all of the options selected, not just the sum total.

I've included the text with value and used parseInt. I have been told I can use value.split(" "), but I don't really know how to go about doing that. I've been fiddling for hours now and don't seem to be able to get anywhere.

I would also like to include a 3rd value, another number, and add that one in a separate calculation.

E.g. For "50 5850ati1gb 56" I would like one calculation which adds 50 to the total, another calculation adding 56 to a different total and 5850ati1gb added to a list of all of the components.

[Code]....

View 1 Replies View Related

Possible To Display A Text Value For Radio Buttons?

Sep 11, 2010

I am building an online store where the customer can select custom parts. I'm quite new to javascript, but I've managed to create a radio button list, where the price is added from each section. I would like a box to show all of the options selected, not just the sum total.

I've included the text with value and used parseInt. I have been told I can use value.split(" "), but I don't really know how to go about doing that. I've been fiddling for hours now and don't seem to be able to get anywhere. I would also like to include a 3rd value, another number, and add that one in a separate calculation.

E.g. For "50 5850ati1gb 56" I would like one calculation which adds 50 to the total, another calculation adding 56 to a different total and 5850ati1gb added to a list of all of the components.

I am not very experienced with this, so don't be afraid to talk to me like I'm stupid

[Code]...

View 7 Replies View Related

Code Efficient

Jul 23, 2005

I have been starting to use Javascript a lot lately and I wanted to check
with the "group" to get your thoughts on code efficiency. First, is there a
good site/book that talks about good and bad ways to code.
The reason I ask is because I was just thinking about the following...which
is better and/or why?

document.forms["myform"].elements["txtname"].value
or
document.myform.txtname.value

Just looking for some insight.

View 8 Replies View Related

Display/Hide Fields Using Radio Buttons

Jul 23, 2005

I would like to be able to display or hide fields based on whether a
specific Yes/No radio button is selected. This is in conjunction with
a posting a just made here in the same group related to checkboxes.

View 10 Replies View Related

Radio Buttons Change Image Display

Mar 23, 2005

I am having trouble getting the following code to work. I just want to make the script in the head work, the html in the body is to stay as it is. I want to use an array. I can make it work very well without an array, using separate conditional statements for each radio button, but that is cumbersome. Can someone please tell me what I am doing wrong with the script in this code. I have stripped the page down to the bare essentials for ease of viewing. Code:

View 3 Replies View Related

JQuery :: Toggle Display Of Blocks Using Radio Buttons

Mar 18, 2009

I don't know if it's appropriate to discuss a JS library here, but I'm wanting to use jQuery to toggle the display of content based on a selected radio button. Here's an example HTML

Code:
<label><input type="radio" name="toggler" value="block01" />Show block 1</label>
<label><input type="radio" name="toggler" value="block02" />Show block 2</label>
<label><input type="radio" name="toggler" value="block03" />Show block 3</label>
<div id="block01>This is block 1</div>
<div id="block02>This is block 2</div>
<div id="block03>This is block 3</div>

Obviously the idea is that only one block is displayed at a time. I'm happy to get the effect anyway possible, but I do want to use jQuery because I believe it will be easier in the long run.

What I don't know how to do is to use the value of a selected radio option to show a block with the same ID as the value. I'm also not sure if I'm correctly select a name when I use $("[name='toggler']").

EDIT: Actually, I don't seem to be able to select the radio buttons using any other method than $("input"). Even if I give each input the same class I can't select it using $(".toggler").

View 5 Replies View Related

Radio Buttons Change Html Display Style (IE)

Jun 17, 2010

In an html form, I want a certain field to be invisible when "no" is checked and visible when "yes" is checked.

This is my code:

html:

<form action="pageName.html" method="post" name="formName">
Question?
<input name="radioBool" type="radio" value="1" onchange="dispField('textInput');" />yes

[Code]....

This seems to work perfectly across all browsers except for IE (latest version).

In IE the only problem is that the radio buttons have to lose focus before the span will change to visible. I would like the "specify" field to display immediately after the radio button changes to yes, rather than waiting for the buttons to lose focus.

View 2 Replies View Related

JQuery :: Finding An Element More Efficient Than Another?

Jan 26, 2010

Since jQuery parses the entire dom first, is there any efficiency gain in directing it via the entire CSS chain rather than directly to an ID? That is, if I have a Div with an ID of "foo" and it contains a P with an ID of "bar", is there any speed advantage in using $(div#foo p#bar) as opposed to just using $(p#bar), assuming jQuery would be more efficient if it had both indexes?

View 2 Replies View Related

JQuery :: What's The Efficient Way To Modify Variable

Apr 4, 2011

I have this div: named as "contact_person"

But I wonder if I use this jquery script;

But, how Could I manipulate / modify the conten variable so then the copied content have a different buttons?

Which is;the both button named as:contactpremovecould be changed its id numbering,and then another button named as :contactpadd could be removed?

The buttons that I mentioned is colored using RED And Blue color.

View 2 Replies View Related

JQuery :: More Efficient Way Of Writing Multiple Functions?

May 19, 2010

I am very exciting about jQuery but a am not programmer and the way I write functions is probably not most efficient. For example I have 12 collapsible panel that I need to control. Is there better way of writing this?

<script>
$(document).ready(function() {
$('.open-close').text('Read More...')

[code]....

View 4 Replies View Related

JQuery :: Efficient Way To Find A Parent For A Button?

May 5, 2009

I want to find a parent for a button. I have set up the html like the following.[code]...

View 2 Replies View Related

An *efficient* Client-side Sorting Script?

Feb 8, 2006

I have some tables with rows greater than 100 and this brings client-side sorters to their knees... Any recommendations on a good, front-end table sorter?

View 4 Replies View Related

Launch Function From Radio Buttons - To Display Text Into A Form Textbox

Feb 22, 2011

I see in a book how to use javascript functions from radio buttons to display text into a form textbox, but what I want to do is instead of display text into a textbox, to display images positioned by CSS. My code is below. All I get is the initial display of radio buttons, the chosen one chosen, and that's it. No display of images. I tried even just using text and no. Here's my code:

[Code]...

View 8 Replies View Related

JQuery :: Select Dropdown With Many Options, Most Efficient Way To Populate?

Jun 16, 2010

I am populating a number of Select boxes on the server-side with a large number of options. I'd like to get the response size down without taxing the client browser too much. What do you think is the most efficient way to approach this problem?

Here are some considerations: The option text/values do not change very often, but could potentially change in the future. The page that holds the select boxes should never be cached, there are other aspects of the page that need to remain fresh. Firebug with YSlow is saying that the primed cache size of the page is 300Kb with all the select dropdowns and options, if I remove the options, the primed cache size of the page is 80Kb. I am considering breaking out the text/value pairs for the select boxes into a separate file that is cache-able calling it "valueTextPairs.js" and referencing it with a query string and some sort of server-generated MD5 hash of the data, so that if any of the values change, the client's cached version will be replaced by the latest version. Like so:[URL]...

Provided I do this, I anticipate that the primed cache size of the page will be reduced down to 80Kb (which I like) -- however, before I take the plunge, I am curious what you all think the performance effect will be?

I know the number of bytes on the wire will be reduced, but will this put a lot of additional pressure on the client's browser because I'd need to traverse the name/value pairs and add the options to the select boxes dynamically on the client end? If it seems reasonable to do this, what jQuery approach would be the most efficient? $('#selectId').html(options) with options = one big string? Adding each child option to the select in a loop? Something else?

Some client end folks are using IE6 so I am trying to tax the browser as little as possible, while also reducing the size of each request, trying to find a happy medium..

View 2 Replies View Related

Small Script For Creating Sub Menus That Display As Move Mouse Over The Main Buttons?

Jan 24, 2010

I'm building a small script for creating sub menus that display as you move your mouse over the main buttons

HTML Code:
<html>
<head>[code]....

its not working, and this is my first JS script

View 3 Replies View Related

Radio Buttons - Get The Image To Display Whenthey Click On The Radio Button

Feb 28, 2010

Im trying to configuere a form that a.a radio buttons that allow the user to choose between quarters, nickels, dimes and pennies and show image when click on my radio button.how to get the image to display whenthey click on the radio button?

View 3 Replies View Related

Buttons Load Slowly - 10 Buttons On A Page - And 10 More "onmouseover Buttons"

Dec 28, 2009

I have 10 buttons on a page, and 10 more "onmouseover buttons" that correlate to the first set. Each button or onmouseover button is only 1-2KB! But I can still hold the mouse over a button for a couple seconds until it loads the onmouseover button. I'm using javascript to have the buttons change. The page does load a 2MB video. Could that be the cause? Can I tell it to load the buttons first somehow?

View 1 Replies View Related

Coding Error Only On IE / Fix It?

Oct 7, 2009

On my blog, www.finkfinance.com, it loads but with the filing Javascript error code...

Does anyone know how I can fix this? I'm not a web coder and I'm lost when I open up the stepcaraousel.js file.

View 4 Replies View Related

Using Same JS Coding Twice On Page

Dec 27, 2009

I have a nice search engine but its seems i can't put it twice on the same page:
<script language="JavaScript">
function startSearch(){
searchString = document.searchForm.searchText.value;
if(searchString != ""){
searchEngine = document.searchForm.whichEngine.selectedIndex + 1;
finalSearchString = "";
if(searchEngine == 1){
finalSearchString = "[URL]" + searchString;
} .....

How to put the code twice in the html page without creating a conflict as a result of identical codes?

View 4 Replies View Related

Coding For Both Js And Non-js Browsers?

Jul 13, 2011

I'm currently modifying a php controlled website and wish to distinguish between javascript and non-javascript browsers in order to decide which pages to display. I have a single php controller script which "includes" a number of html pages. I want to ensure that I cater for both javascript and non-javascript browsers (so functionality is the same, only the javascript pages have a far better look and feel to them).

Therefore I would like to code something along the lines of :

Code:
if (javascript_browser=='true')
{
include './javascript_page1.html.php';
exit();

[Code].....

View 1 Replies View Related

Javascript Coding Utils

Jul 23, 2005

Can anyone recommend a good editor for coding Javascript?? ie. once which
has 'intellisense' type prompting etc.

If there isn't an editor with this built-in, is there a program which does
it as a quick-ref help tool??

View 1 Replies View Related

Coding A Brute Forcer

Jul 20, 2005

Firstly it generates two numbers. One is the sum of the CharCodes and
the other is the product of multiply each of the charcodes together
and usisng the Modulus function.

If the text string is correct, the string is then used to decode (via
a relatively simple crypt) another string, which then gives you the
correct target url.

I hope that makes sense - if it doesn't, its pretty unimportant as the
question I have is as follows :

In javascript, how do I code something that allows me to cycle through
all the possible text strings. Ideally, I would like to read from a
dictionary file and then start a brute force.

Throughout each cycle, I imagine you just set input_user (in this
case) to the value of the next line in the file. For a dictionary
attack I imagine. That bit isn't too tricky I don't think but I can't
get my head around it. Maybe more coffee would help?

And I'm sure struggling to put together a brute forcer so I turn to
you guys and gals to ask if you could help me and point me in the
right direction on how to code this.

I'm assuming also that the code we end up with, would be generically
useful too as in we could vary the output (going to input_user) in
this instance to another variable and use it with another script?

View 10 Replies View Related

Order Form Coding

Mar 13, 2006

I need advice about creating an order form (I was sent here from the General Web Building forum!) and I have been told that JavaScript is the way to go - can anybody help with the following (I know nothing about Javascript really).

I have an order form and plan to have the data emailed to me (I have FormMail script installed on my server). The form will have the following fields:

Reference Number
Size / Cost
Quantity
Grand Total

Clients will enter the ref no., choose a size/ cost (radio-button), and quantity (text box). I plan to accept details for about different items. I just want the total cost to be displayed in a box at the bottom before the form data is sent to me.

Can anybody point me in the right direction of how I might go about this? Tutorials / sample code etc.

View 8 Replies View Related







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