Which suggested script are you using? It does not look a bit like that of post #14.
If you cannot post the portions significant to the problem, at least post a link to the site.
Also you should surround your forum scripts with [ code] and [ /code] tags (without the spaces)
to make it easier to read without the smilies you have imbedded.
Sorry about that it was my fault. I didnt know about the code tags. Here is the code for the page. I thought I could take the code you provided and change the id tags but it didnt work with this stupid system we have. Here is the full code:
You have an awful lot of code to view there.
Which suggested script did you use and where did you put it?
I don't see it inline and I cannot see the external JS or CSS file contents.
Where did you put the color boxes to click on to change the associated radio buttons?
Where are the functions to cause the radio buttons to be set?
I pulled the style out of the css file and made it inline. I guess I should have kept it that way. Then I made sure the javascript was showing up. Thank you for being patient with me on this one. I'm really lost.
I pulled the style out of the css file and made it inline. I guess I should have kept it that way. Then I made sure the javascript was showing up. Thank you for being patient with me on this one. I'm really lost.
If you use FF browser, go to Tools-Error Console
Clear the console and refresh the page for a list of problems
Most appear to be CSS warnings, but the one that stands out is the following:
Code:
<script type="text/javascript">
$(function() {
var specForm = $451.createSpecForm();
var get = specForm.get;
<script>
function setRBtn(RBtnGroup,which) {
var sel = document.getElementsByName(RBtnGroup);
You have 2 <script> tags. Eliminate the one in RED
I don't know if that will fix all your problems, but you should have one less!
Using the Error Console it looks like the syntax error is what might be the issue and I would guess this is what it is based on the part that there isnt an RBTnGroup:
Bookmarks