Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3681030
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:38:48+00:00 2026-05-19T03:38:48+00:00

I want to create a system of reporting/flagging comments. At this point Im just

  • 0

I want to create a system of reporting/flagging comments.

At this point Im just getting it to send the commentid to a field inside a hidden div and the pop that div up next to the clicked “flag” link. (taken from :How to position one element relative to another with jQuery?)

I have something like this along each comment:

<a class="flag" id="flag-post-@(item.ID)">flag</a>

and this for my jquery:

$(".flag").click(function () {

            var commentId = $(this).attr('id');
            $("#comment-id-label").val(commentId);


            //get the position of the placeholder element
            var pos = ("#"+commentId).offset();
            var width = ("#"+commentId).width();
            //show the menu directly over the placeholder
            $("#menu").css({ "left": (pos.left + width) + "px", "top": pos.top + "px" });
            $("#menu").show();
        });

<div style="position: absolute; display: none;" id="menu">
           <input id="comment-id-label"   type="text" value="" />
</div>

but its not working any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T03:38:48+00:00Added an answer on May 19, 2026 at 3:38 am

    You are missing the jQuery alias $ at two places.

    I did some tweaking, and got this to work:

    $(".flag").click(function () {
    
        var commentId = $(this).attr('id'),
            comment = $("#"+commentId);
    
        $("#comment-id-label").val(commentId);
    
        //get the position of the placeholder element
        var pos = comment.offset();
        var width = comment.width();
    
        //show the menu directly over the placeholder
        $("#menu").css({
            "left": pos.left+width,
            "top": pos.top
        }).show();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a PNG file from a System.Drawing.Bitmap with the colours defined
I want to create a logger which logs all my messages sent to System.out
Can I create a junit environment without file system and network access? I want
I am trying to create a conversations based messaging system. I want to group
i want create Dynamic Slideshow in Jquery i'm Write this code var ctx =
I want to create a friends system like facebook, well quite weird than that.
I want to create a System.Drawing.Color from a value like #FF00FF or FF00FF without
I want to build a flexible reporting system for my application. So far I
I want to create simple login system using the SQLLIte I have created the
I want to create simple poll system. I have two question and two answers.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.