Forums

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

Home Forums CSS jquery for button click + update mysql database

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

    Hi,
    I develop a web page which is having a video and users given comments and other users like or dislike comments.I want the PHP and jQuery code for MySQL update when a user like the comments and dislike the comments with out refreshing the page.

    plz could any one help me

    regards,
    Raghavendrachari.

    #89300

    Hi,

    Thank U for ur suggestion,
    but i need it urgent.i tried it, but getting some errors.

    #89674

    $(document).ready(function()

    {

    $(".like").click(function()

    {

    var parameters = $(this).attr('data-mydata').split(',');

    var dataString ='some parameters passing to php page ;

    $.ajax

    ({

    type: "GET",

    url: "cr.php",

    data: dataString,

    cache: false,

    success: function(html)

    {

    $("#commentbox").fadeout('slow').load('#').fadein('slow');


    }

    });

    });

    });

    This is the code i am using for

    when i click like or dislike ; then it is automatically updated in the database .. but not refreshing count automatically in the div ‘commentbox’ page…?

    when i refresh the page it will only change/refresh the updated count.

    could any one help .. how to solve this issue…?

    see this div is only one part of the page not an entire page.

    #89969

    can any one help in the above issue

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