Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Any toolkit that can get me started like this site?

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25560
    miburo
    Member

    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?

    #61130
    Mr KiTT3N
    Member

    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….

    Code:
    $(‘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 += ‘

    ‘ + item.content ‘

    ‘;
    });
    $(‘table tr’).append(appendData);
    });

    });

    something like that…. all is free hand (not tested) and is for learning

    #61360
    miburo
    Member

    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!

    #61681
    Mr KiTT3N
    Member

    http://docs.jquery.com/Tutorials

    Try starting here….

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.