Hey sorry for the late reply had logged off by the time you all replied...
Thank you all for your efforts and contribution especially xelawho and Philip M...
I feel I was not efficient to explain the module correctly the closest was xelawho...
let explain with an example:
say there are 6 variables storing string values:
var p1 = "Doctors appointment";
var p2 = "studying for the exam";
var p3 = "Going out for most awaited shopping";
var p4 = "Login on Facebook";
var p5 = "Replying to text msgs";
var p6 = "Going out with friends";
how it works on the users end:
(this is what user sees on the page)
What is more important to you? if you had to do these thing at the same time, which one would you give the priority?
Options (click any one)
1) Doctors appointment // "Login on Facebook" // "Replying to text msgs" // "Going out with friends"
or
2) studying for the exam // "Going out for most awaited shopping"
//First click (select): if the user click on option 1 then option 1 remains there and option 2 changes to var p3 ("Going out for most awaited shopping")
//Second click (select): if the user then selects the option 2 where the value is var p3 "Going out for most awaited shopping" it remains unchanged there and the option 1 having value p1 ("Doctors appointment") changes to p4 ("Login on Facebook")
//Third click (select): if the user then selects again option 2 where its value is still var p3 then option 1 changes from var p4 ("Login on Facebook") to var p5 ("Replying to text msgs")
//Fourth click (select): if the user still selects option 2 where its value is still var p3 then option 1 again changes from var p5 to var p6 ("Go out with friends")
//Fifth click (select): if the user selects option 1 where its value is var p6 ("Going out with friends") over option 2 var p3 ("Going out for most awaited shopping")...
Then the result is stored as result1 and is displayed on the screen and the next loop starts for result2 where result1 (in example:"Going out with friends") has to be removed from the next loop for result 2 as result1 is already selected important by the user..
result1 and result2 are to be removed from the next loop for result 3 as they are already selected important by the user...
Yes! it is wierd type of selection and is complex but that is how it has to be
I hope I was efficient in explaining the module correctly this time
awaiting your reply