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 7643785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:31:56+00:00 2026-05-31T09:31:56+00:00

This may be something very easy but i can’t seem to get this to

  • 0

This may be something very easy but i can’t seem to get this to work and im not sure why. I have jquery installed and i am trying to get an attribute of “this” element when i click on it. Right now my code looks like this:

url = $(this).attr("href")

When I call this function by clicking on a link, it tells me that the var “url” is undefined. So obviously it is not picking up the “this” when i click on the link. I am trying to pass the href of an anchor tag to use as my variable.

What am i overlooking? Again, i know this is something very simple but i can’t seem to figure it out so thank you for taking the time to help me.

Thanks.

<script type="text/javascript">
url = "push1";

$("a").live("click", function(event) {
    event.preventDefault();     
    url = $(this).attr("href");
})
$.ajax({
    type: "get",
    url: "/"+url+".php",
    data: "",
    dataType: "html",
    success: function(html){
        jQuery('#Right_Content').hide().html(html).fadeIn(1000);
    },

})
;
</script>

html:

<body>

<a href="push1" >Image 1</a>
<a href="push2" >Image 2</a>  

<div id="Right_Content"></div>

</body>
  • 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-31T09:31:58+00:00Added an answer on May 31, 2026 at 9:31 am

    This should work for you

    $(function(){    
        $(".link").click(function(){
           var url=$(this).attr("href");
           alert(url);
            return false;
    
        });       
    
    });​
    

    Assuming you are targeting all anchor tags with a css class called “link”

    Here is the working example : http://jsfiddle.net/L99mM/2/

    Edit: As per your code posted in the question

    You should call preventDefault after your ajax call. and there is closing brackets should be after ajax call

    $("a").live("click", function(event) {      
          var targeturl = $(this).attr("href");
    
          $.ajax({
                   type: "get",
                   url: "/"+targeturl +".php",
                   data: "",
                   dataType: "html",
                   success: function(html){
                       jQuery('#Right_Content').hide().html(html).fadeIn(1000);
                   }
    
               });  // closing for  ajax
            event.preventDefault(); 
    
      });  // closing for click  event binding 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This may be a very dumb question but I can't seem to get it
This is supposedly a very easy question, but I just can't seem to find
I think this may sound very straight forward, but still something is not working
This may be something common and trivial, but I seem to be having trouble
This may be a very dumb question, but how can I pass a parameter
This may be something covered in C# 101 but I haven't been able to
I realize something like this has been asked, but this may be a little
Ok, this may be a dumb question but here goes. I noticed something the
I may be missing something here because I thought this might be really easy
I may be missing something obvious here, but how could I rewrite this code

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.