Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created two radio buttons :

<form>
        <p><input type="radio" name="center" value="center">Center</p>
        <p><input type="radio" name="right" value="right">Lower Right</p>
    </form>

and a jquery script to move the position of a div, it's working, but I have two problems :

1) when I check a radio button , it will not be unchecked when I check the other one, because I am using different names that I will nee for click event.

2)the center positions and the bottom right are hard coded.

Any idea will be appreciated.

<script>
            $(function(){
                $(init);
                function init(){
                    $('#target').draggable();
                }
                $('input[name=center]:radio').click(function(){
                    $('#target').css({
                        position:'absolute',
                        top:200 + 'px',
                        left:45 + 'px'
                    });
                });
                $('input[name=right]:radio').click(function(){
                    $('#target').css({
                        position:'absolute',
                        top:550 + 'px',
                        right:200 + 'px'
                    });
                });
            });
    </script>
share|improve this question
3  
Why not use an ID attribute to differentiate the elements in your click event handler, and keep the radiobutton names the same? That way, you don't have to hack a solution; you can just use the default functionality of the browser. – Dan Sep 13 '12 at 0:10
@Dan - That sure seems like the right answer to me. You should post it, and we will upvote it. – adeneo Sep 13 '12 at 0:12

1 Answer

up vote 3 down vote accepted

Use the ID attribute to differentiate the elements in your click event handler. Keep the radiobutton names the same. That way, you don't have to hack a solution; you can just use the default functionality of the browser:

<form>
    <p><input type="radio" id="center" name="someFormValue" value="center" />Center</p>
    <p><input type="radio" id="right" name="someFormValue" value="right" />Lower Right</p>
</form>
share|improve this answer
Thank you Dan. the positions (center and lower right( are still not dynamically calculated. – akram Sep 13 '12 at 0:37

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.