jquery, .next() not working when using in $.get callback function

jquery, .next() not working when using in $.get callback function

Hello, I am newbie to Jquery, i need help for the following,

When i use

  1.  $(".rateit").click(function(){
  2. $(this).next(".rateoptions").html('My options data here');
  3. });
It works smoothly, But when I use this in a callback function it doesn't work as follow;

  1.  $(".rateit").click(function(){
  2. $.get("test.php",  function(data){

  3. $(this).next(".rateoptions").html(data);
  4. });
  5. });
I will be thankful for your help regarding this fix.