Skip to main content

Bug Tracker

Side navigation

#10672 closed bug (worksforme)

Opened November 04, 2011 03:35PM UTC

Closed November 04, 2011 04:40PM UTC

attr() no return value

Reported by: bartha.brw@gmail.com Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.7
Keywords: Cc:
Blocked by: Blocking:
Description

Dear jQuery Team!

I found a bug: attr() no return value.

Test:

html

<input type="button" name="test_button">

jQuery

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

var type = $(this).attr('type');

name = $(this).attr('name');

alert("Type: "+type+" & Name: "+name);

});

//return: "Type: undefined & Name: undefined"

Thank: Barnabás Bartha

bartha.brw@gmail.com

Attachments (0)
Change History (1)

Changed November 04, 2011 04:40PM UTC by dmethvin comment:1

resolution: → worksforme
status: newclosed

Whoops, i deleted my earlier comment, misread the example.

http://jsfiddle.net/dmethvin/4qTmX/