I am working on a conference registration project in html with bootstrap/jquery and have built a unique url for each registrant that captures their session choices using url parameters. If the conference session id was THU_3PM, the url parameter and value would be THU_3PM=1 if they selected it, or THU_3PM=0 if they did not. I've got like 30 sessions, so I have multiple params to look at.
On their simple "check my schedule" page, I've got divs for each session with matching ids, and my thought was to hide all session divs by default and then show the divs that correspond the url params that = 1.
I've gotten jammed up trying to parse the query string and think I might be better off asking for help. Anybody got a simple jquery or javascript example that could help me out? I'd be very appreciative.