Is there a way to make an entire row of a dynamic table clickable that will also get the url from a field supplied in the table?
Yes it is, but you're question is too vague to receive an answer with any actual code Perhaps try elaborating exactly what you want?
I have a form that is used to search the database for pdf's, it generates the results into a table. One of the fields contains a link to view the pdf. I was hoping to make the entire row direct the user to the pdf on click.
Completely possible - what you want though is to make the <tr> of the table clickable, which can be done using jQuery (you can't really wrap a table-row in an <a> as that is invalid HTML) - if you also make it so the text inside the tablerows aren't selectable, you'll get more or less what you want and need. $("tr").click(function() { //whatever you need done when clicking here });