I have a datalist for list of documents 
 <asp:DataList ID="DLDossierList" runat="server" >
            <ItemTemplate>
                <div class="doss_hea_seno_2" url="dossier_timeline.aspx">
                   .
                   .
        <asp:HiddenField ID="hfDocNo" runat="server" Value='<%#("DoCNo") %>' />
                   .
                </div>
            </ItemTemplate>
        </asp:DataList>
I want to redirect to another page when he clicks on (div) list item i.e document name . for this I am using following script :
<script>
            $(document).ready(function () {
                $('.doss_hea_seno_2').click(function () {
                    window.parent.location = $(this).attr("url");
                    return false;
                });
            });
</script>
but now I want to pass hidden field value as a query string . how can i achieve this ?


