Jump to content

$(this).attr() trouble


Tenaciousmug

Recommended Posts

$(document).ready(function() {
$(".alert").click(function() {
	{
		var id = $(this).attr("id");
		alert(id);
		$(id).dialog();
		return false;
	}
});
});

 

Ok it's alerting the id AFTER it alerts an undefined.. so it alerts "undefined" and then "5" or whatever the number may be.

What am I doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/254689-thisattr-trouble/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.