I am having difficulty showing a hidden div when a user selects a radio box.
This is my code:
The Jquery
<script>
$(document).ready(function () {
$(".paypalmethod").click(function() {
$(".paypalinfo").show('slow');
});
</script>
The html
<input name="method" type="radio" value="paypal" class="paypalmethod"/><img src="/images/...
Hi Everyone,
Tried doing a bit of research on the following with no luck. Thought I'd ask here in case someone has come across it before.
I help a volunteer-run radio station with their technology needs. One of the main things that have come up is they would like to schedule their advertising programmatically.
There are a lot of nea...
Is there is a way to determine an iPhone's exact location (indoors, and to a distance of just a couple of feet) via use of radio/antenna's or some other infrastructure located around premises (i.e a hospital, shopping mall, school). Will appreciate any ideas/direction (technologies, research) as for how to overcome this limitation.
...
Please see the form HTML code below
<form method="post" action="register">
<div class="email">
Email <input type="text" tabindex="1" id="email" value="" name="email"> </div>
</div>
<div class="agreement">
<div tabindex="2" class="terms_radio">
<div onclick="changeTerm(thi...
I've been trying to get the name/title of internet radio stations based on the url in python, but with no luck so far. It seems that internet radio stations use another protocol than HTTP, but please correct me if I'm wrong.
For example:
http://89.238.146.142:7030
Has the title:
"Ibiza Global Radio"
How can i store this title in a var...
I'm interested in Software Defined Radio. I have basically no experience in any of the electrical engineering or math topics involved, but I'm reading...
Rather than trying to deal with the hardware aspect of the antenna and the ADC, I imagine it'd be fun enough (and cheaper) to play with some pre-recorded (or even live!) sample stream...
Hi,
I have a radio button with long labels that wraps to the next line, it is displaying correctly in Firefox and IE8, but not in IE7 and IE6.
Basically, what I want is shown below (where o is the radio button):
I/we authorise WITHDRAWALS from my Investec account to and DIRECT
DEBITS from this designated account
I/we authorise WITH...
Hi there,
I have 2 radio inputs. How can I process jquery functions on a selected value on a onchange event?
<input value="radio_2way" name="IBE1$IBE_NurFlug1$flightIBE" id="IBE1_IBE_NurFlug1_radio_2way" checked="checked" type="radio">Hin- und Rückflug <input value="radio_1way" name="IBE1$IBE_NurFlug1$flightIBE" id="IBE1_IB...
Hi guys, i have a bit of logical problem here. I have a catalog of products that have unique ids and options that are displayed to the user through radio buttons. Now my problem is that a user must be able to select different options (from different products) and to submit them to a PHP script that handles this request (via POST). The p...
Hi everyone,
I am relatively new to flash although im loving the software. Im creating an Internet Radio Station website in flash. Everything seems to work okay, now i want to embed or add a flash player for the radio stream from shoutcast. anyone know any players that cud be added to my fla and work once given a stream url and port?
...
Dear All
I am using jquery my html code
<input type="radio" name="maritalstatus" id="maritalstatus" value="single"/>
single
<input type="radio" name="maritalstatus" id="maritalstatus" value="married"/>
Married
<input type="submit" id="clicksingleactive" />
<input type="submit" id="clickmarriedactive"/>
if i submit the click ...
Hey guys.
I am looking for a free to use radio or music streaming service which I can access using java.
I am making a game and instead of creating our own music - there must be a better alternative and hoping this coughs up with something pretty good.
Would be cool to have different music streamed to the game whilst you are playing.
...
to see the error:
http://jsfiddle.net/sEdGz/2/
//the script works, but the clicked radio isn't checked=checked
//mysql and php works good
$('#form1').live("click change", function() { ....
<div class='divtoclick'>neu berechnen</div>
<form id="form1" method="post" name="bestellformular">
<input value="101" name="flyer_anzahl" ty...
I would like to make this form dynamic with prototype. I mean, the radio should be disabled, but when you chose one, with js, it should turn them enabled, same way if you chose the other one, the 1st should turn disabled.
This is my HTML, but I have no idea where to start with JS to make this work, thank you
<form id="uploadForm" metho...
There seems to be a problem in FF when you use jquery.validty.js to validate my forms. If I'm validating a checkbox or radio btn the X image doesn't show up. It works in safari but I haven't tried IE. Has anyone had this problem?
<html>
<head>
<title>Simple</title>
<link type="text/css" rel="Stylesheet" href="css/jquery.validity...
I need to build an iPhone app with the ability to stream internet radio.
Can someone please tell me what formats I need to cover or possibly direct me to an open source project to help me do this?
I know that quick time player on iphone supports a number of formats, but I need to wite my own embedded player inside the app, so that the...
HTML:
form
input:radio 1
input:radio 2
input:radio 3
If one of these is clicked, I'd like to disable the rest. I think siblings selector will be used here but I can't figure out how.
Thanks for your help!
...
<p><label><input type="radio" name="group1" /> one</label></p>
<p><label><input type="radio" name="group1" /> two</label></p>
<p><label><input type="radio" name="group1" /> three</label></p>
When one of the radio input is selected, I'd like to completely disable others. I tried with the jquery siblings selector but it works only if all...
<label><input type="radio" name="group1" selected="selected" /> one </label>
<label><input type="radio" name="group1" /> two </label>
<fieldset id="one"> one </fieldset>
<fieldset id="two"> two </fieldset>
I'd like to show one fieldset at a time based on the radio selected. I know how to do with <a>s but radios seem difficult.
Thank...
hello,
i'm unable to get a radio value in a form loaded by ajax into a div.
here is the javascript code i'm using.
(the radio name is 'categorie_add' in get function)
function getCheckedValue(radioObj) {
if(!radioObj)
return "";
var radioLength = radioObj.length;
if(radioLength == undefined)
if(radioObj.checked)
return...