treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Any toolkit that can get me started like this site?

  • http://inside.nile.ru/#years-2006/article11.html

    This site... is amazing... perfect... for i wanted.

    Is there any toolkit that can get me started in making something similar? Or does it seem like a straight from scratch deal?
  • The only the site is really doing javascript wise is ajax.... Jquery would work great, the script is dumping json data and javascript is taking that info and appending or replacing table elements (td) inside 1 row....



    $('div#nav a').click(function(){
    var appendData = null;
    $.getJson('/db/to/json/file/here.php', window.location.hash, function(data){
    $.each(data.items, function(item){
    appendData += '<tr><a href=\"' + item.href + '\">' + item.content '</a></tr>';
    });
    $('table tr').append(appendData);
    });

    });



    something like that.... all is free hand (not tested) and is for learning
  • Thank you for your help Mr Kitten. Though i have some beginner java knowledge from classes at school i'm not very good at it. But do have i guess you can say working knowledge of css / java / html enough to real most things. To make a site like this one is there any resources or tutorials you can point me to to get me started in learning more Thanks!