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

  • Home
  • SEARCH
  • 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 6382975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:35:31+00:00 2026-05-25T02:35:31+00:00

I know this should be basic but for the life of me…. eventMouseover: function(calEvent,

  • 0

I know this should be basic but for the life of me….

eventMouseover: function(calEvent, domEvent) {
    if (typeof calEvent.id != 'undefined'){
        var layer = "<div id='events-layer' class='fc-transparent' style='position:absolute; width:100%; height:100%; top:-1px; text-align:right; z-index:100'> <a> <img border='0' style='padding-right:5px;' src='/icon_note_delete.png' width='16' onClick='deleteEvent("+calEvent.id+");'></a></div>";
        $(this).append(layer);
    }
}

The part that isn’t working is

onClick='deleteEvent("+calEvent.id+");

Since the id will be a string not a number I need to quote it.

as is it is giving me

onClick="deleteEvent(e_1984_2_184_668)"

but I need

onClick="deleteEvent('e_1984_2_184_668')"

I have tried

onClick='deleteEvent(\'"+calEvent.id+"\');

but it didn’t work either. I know this is something stupid that I am missing but help is much appriecated!

  • 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-25T02:35:32+00:00Added an answer on May 25, 2026 at 2:35 am

    You should use double-quotes to surround calEvent.id, because it’s within a single quote string:

    var layer = "<div id='events-layer' class='fc-transparent' style='position:absolute; width:100%; height:100%; top:-1px; text-align:right; z-index:100'> <a> <img border='0' style='padding-right:5px;' src='/icon_note_delete.png' width='16' onClick='deleteEvent(\""+calEvent.id+"\");'></a></div>";
    

    However, it would be easier and more readable in my opinion if you used a chain of jQuery calls to create your HTML instead:

    var layer = $('<div></div>').attr('id', 'events-layer')
                    .addClass('fc-transparent')
                    .css({
                        position: 'absolute',
                        width: '100%',
                        height: '100%',
                        top: '-1px',
                        textAlign: 'right',
                        zIndex: '100'
                    })
                    .appendTo(this);
    
    var anchor = $('<a></a>').appendTo(layer);
    
    var img = $('<img>').attr('border', '0')
                        .attr('src', '/icon_note_delete.png')
                        .attr('width', '16')
                        .css({
                            paddingRight: '5px'                        
                        })
                        .click(function() { deleteEvent(calEvent.id); })
                        .appendTo(anchor);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this should be a basic question but I am hitting a brick
I know this should be simple and I should know it but it's eluding
I feel like I should know this, but I haven't been able to figure
This is one of those I probably should know this, but I don't questions.
This is something stupid I probably should know, but Googling fails me: When compiling
I know this may seem quite basic to geeks. But I want to make
I know this is a basic RTFM question but I'm pretty new to rails
I know this is very basic, but after massive refactoring, i remain a bit
I know this is a basic question, but I can't seem to find an
I know this maybe a very basic question but I'm having a bit of

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.