Jump to content

ebay type form


herghost

Recommended Posts

Hi everyone,

 

Can anyone give me any pointers towards how to create a form like the listing add one on ebay? Basically the form fields are displayed depending on what type of product you have, I basically need something very similar where I have multiply categories but wish to have different inputs for each type?

 

Many thanks

 

 

Link to comment
Share on other sites

Ok, this is what I have found online and am trying to edit to my own needs:

 

<html>
<head>
<title></title>
<script type="text/javascript">
var cats = ["electronics", "entertainment", "homeandgarden", "finance", "motoring", "fashion", "travel", "medical",];
var electronics = ["mobiles", "hi-fi"];
var entertainment = ["books", "dvds",];

function visiblox(arrDiv, hs) {
var disp = (hs) ? "none" : "block";
for(var x = 0; x < arrDiv.length; x++) {
	document.getElementById(arrDiv[x]).style.display = disp;
}
}

function chk(what, item) {
if(item) {
	visiblox(what, false);
} else {
	visiblox(what, true);
}
}
</script>
<style type="text/css">
<!--

.hide
{
display: block;
}

.hide
{
display: none;
}
-->
</style>
</head>
<body>
<img src="images/electronics.png" onClick="chk(electronics, this.clicked);">

<br>
<input type="checkbox" onclick="chk(entertainment, this.checked);" checked> Entertainment<br>
<br>

<br>

<div id="mobiles" class="hide">Mobiles</div><br>
<div id="hi-fi" class="hide">Hi-Fi</div><br>
<div id="books" class="hide">Books</div><br>
<div id="dvds" class="hide">DVD's</div><br>


</body>
</html>

 

The check boxes work fine, however how would I get the image to achieve the same result?

 

Thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.