Quote:
Originally Posted by A.J. Angel
LOL! That's too advance for me in words! Would it be possible for you to provide an example code for me to work from? I'm not a savvy coder. 
|
I'm in fact thinking now that it would be easier to "load" the whole image block html content (everything between the div). Take a look at the jQuery example of symtab. The html he's including there is just a single tag, but you can include the complete DIV content you have as well.
That would be something like:
Code:
$(document).ready(function() {
$("#clicker_id").click(
$("#galleryblock1").html('<table........</table>');
);
});
But it's a lot of HTML code that needs to be included and I'm not into jQuery yet to know if there is a better way to include such a huge block of html code.
I do not know how good you are but you should check out
http://jquery.com/. Check out the examples as well, it might give you some ideas.