View Single Post
Old 12-27-2009, 03:51 PM  
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
Quote:
Originally Posted by A.J. Angel View Post
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook