Thickbox, jQuery and ASPX
I have an ASPX MasterPage with jQuery and开发者_如何学C Thickbox references. I used Thickbox to display some helpful tips, i.e., product information using the inline HTML that define the class="thickbox." Works on the links that are part of the MasterPages, however, when I create a new Web Form using the same MasterPage with the jQuery.js and Thickbox.css, the links won't pop up. Here's an example:
<a href="help/htmlPage.html?height=400&width=600" title="Title of htmlPage" class="thickbox">IMAGE TAG</a>
Any help is appreciated.
Are you sure you have thickbox.js
included in those web forms? If yes, is it actually being loaded? Maybe you are using a relative path, and the directory has changed?
Use Firebug's net tab to verify that script files that are referenced are actually being loaded.
精彩评论