I have a page that displays user information as a result of a HTTP request. This user page has a print button. On clicking onto this print button the information is formatted for printout using jQuery scripts.
Now I have a task to print several users. I can send an AJAX request for every user, put results into a separate div for every user, invoke a print button for every div, and then display results.
My concern is that the results for every page will have the same id (i.e. “container”) – this will screw up jQuery scripts.
How to fix this design, or maybe there is a better design idea?
$('.container'), and then add class (for exampleprocessed) for every instance while printing them in foreach loop. – Stan Dec 6 '12 at 17:20