Hi Guys,

Good day! I like to fix one thing. When clicked/touched anywhere in the selection box, two things happen, the contents of the selection box is shown and the 'v' symbol changes in a '^' symbol.

Click Here

Any help is(GREATLY)appreciated .....

Thank you.

Recommended Answers

All 3 Replies

Some sample code to look at would be helpful in helping you.

Do you have a live version of it if not the source code? We are basically making guesses off of a picture and a somewhat clear description.

I think I understand what you need, so here is a jquery plugin to accomplished what you want
https://code.google.com/p/select-box/

Usage
include

<link href="http://select-box.googlecode.com/svn/tags/0.2/jquery.selectbox.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://select-box.googlecode.com/svn/tags/0.2/jquery.selectbox-0.2.min.js"></script>

html

<select id="language">
    <option value="javascript">Javascript</option>
    <option value="objective-c">Objective C</option>
    <option value="python">Python</option>
</select>

js

<script type="text/javascript">
$(function () {
    $("#language").selectbox();
});
</script>

77374fd30535d61977df4a50fdbcb88a
any help, am here :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.