Hi,
I’m developing a web application to display all my movies
collection I have at home.
Basically I have 1 template. It displays the complete list.
In it, we can find a link for each movie that will display a <div>
section (with all the detailed information about the selected movie) into a
lightbox (fancybox).
Overview of my template
It works perfectly. But because I have a few hundreds films,
it became rapidly impossible to easily choose a movie to watch.
So I’ve decided
to use a form to filter the list with a few URL parameters. My collection is
correctly filtered.
My URL looks like : domain_name/page.aspx/p1/value_p1 /p2/value_p2
But now, and because
I have parameters in my URL, I cannot display the detailed information in a
lightbox anymore. Instead my URL changes
and looks something like:
domain_name/page.aspx/p1/value_p1 /p2/value_p2# vue_fiche_film-[value_id_film]
How can i do to display my <div> section into the lightbox when i have my list filtered ?
Thanks in advance for all the help