Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$("h2.trigger").click(function(){
            console.log($(this));

            $(this).toggleClass("active").next().slideToggle("slow");
            var viewName=$(this).attr('id');

            //display approval list ajax method
            var html="";

I'm currently working on a jQuery application and do a console.log($(this));

In Firefox it prints

[h2#vw_hs_hr_wf_admin_data.trigger] this is a object

We can not take it as a plain string as it returns Object object. I would like to assign the "h2#vw_hs_hr_wf_admin_data.trigger" as a plain text to a JavaScript variable.

I tried

alert($(this).id); 
alert($(this).0); 

but I have no luck.

share|improve this question
What do you need this for? It seems you want the ID concatenated with the classes, but why? – Felix Kling Jul 8 '11 at 10:18
want to print "h2#vw_hs_hr_wf_admin_data.trigger" i think this is a object name. why means i want get the current object and put it the php session and get the value lator – Roshan Wijesena Jul 8 '11 at 10:22
What is the value of an h2 element? The text? – Felix Kling Jul 8 '11 at 10:24
value is some dynamic generated table – Roshan Wijesena Jul 8 '11 at 10:25
And how is this table related to the h2 element? How do you want to get the "value" given the name/id/whatever? – Felix Kling Jul 8 '11 at 10:27
show 1 more comment

2 Answers

up vote 1 down vote accepted

just use the attr method: $(this).attr("id") ?

share|improve this answer
this will return element id only i want full object name to print "h2#vw_hs_hr_wf_admin_data.trigger" i think this is a object name. why means i want get the current object and put it the php session and get the value lator – Roshan Wijesena Jul 8 '11 at 10:24
1  
@Roshan: As IDs have to be unique, this will be fine if you want to access the same element later on. – Felix Kling Jul 8 '11 at 10:24
thanks @Felix Kling you are correct i resolved it – Roshan Wijesena Jul 8 '11 at 10:29

I don't know what you'd want with this, but this thing makes concatenates the objects properties into what you want. The reason you see it like that in Firefox, is that it does that concatenation internally when presented to the user. Markup in my example is this;

<h2 id="vw_hs_hr_wf_admin_data" class="trigger">Click me</h2>
<p></p>

And then the script does its thing;

(function($) {
    $(function() {
        $('h2.trigger').click(function() {
            var text = getTagNameIdClass(this);
            alert(text);
        });
    });
    function getTagNameIdClass(obj) {
        return (obj.tagName).toLowerCase() + "#" + obj.id + "." + obj.className;
    }
})(jQuery);

Hopefully this helps? :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.