Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been thinking about how to execute pretty much a duplicate of this form for static ads:

http://haystakchryslerpap.com/displayad

I was going to do a combo form using this code:

<select id = "opts" onchange = "showForm()">
    <option value = "0">Select Ad Type</option>
    <option value = "1">Single Vehicle</option>
    <option value = "2">Event</option>
</select>

<div id = "f1a" style="display:none">
<form name= "form1a">
    <select id = "opts" onchange = "showForm()">
        <option value = "0">Select Make</option>
        <option value = "01">Dodge</option>
        <option value = "02">Chrysler</option>
        <option value = "03">Jeep</option>
        <option value = "04">Ram</option>
        <option value = "05">Fiat</option>
    </select>
</form>
</div>

<div id = "f1b" style="display:none">
<form name= "form1b">
    <select id = "opts" onchange = "showForm()">
        <option value = "0">Select Event</option>
        <option value = "06">Summer Clearance</option>
        <option value = "07">Jeep Celebration Event</option>
        <option value = "08">Ram Power Days</option>
        <option value = "09">Truck Month</option>
    </select>
</form>
</div>

<script type = "text/javascript">
function showForm(){
    var selopt = document.getElementById("opts").value;
    if (selopt == 1) {
        document.getElementById("f1a").style.display="block";
        document.getElementById("f1b").style.display="none";
    }
    if (selopt == 2) {
    document.getElementById("f1b").style.display="block";
    document.getElementById("f1a").style.display="none";
    }
}

</script>​

And then displaying the images loading an iFrame with a script similar to this to generate the images and reference numbers using this http://sye.dk/sfpg/

My question is these are a lot of varibles that i am working with here and i think there has to be a better way to achieve the same result as the first mentioned example.

Could anyone provide me any better direction on this?

Much Appreciated ~Chris

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.