Tenaciousmug Posted January 10, 2012 Share Posted January 10, 2012 $(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? Quote Link to comment https://forums.phpfreaks.com/topic/254689-thisattr-trouble/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.