Pavlos1316 Posted November 18, 2014 Share Posted November 18, 2014 In HTML5 some attributes are no longer supported eg: name attr for <a> is no longer supported. What happens when in a tag like <a> exists a non supported attr? <a id="me" name="you"> Will it just be ignored like is not there or it can cause problems later on and how? Quote Link to comment https://forums.phpfreaks.com/topic/292560-not-supported-tag-variables/ Share on other sites More sharing options...
Solution Frank_b Posted November 18, 2014 Solution Share Posted November 18, 2014 what i expect is that it will still be suported for a while simply because a lot of existing webpages will not change in years. But if you want to use a better method then you should use the data- tag: <a id="me" data-id="him" data-name="you"> The id tag is NOT deprecated in html5. Quote Link to comment https://forums.phpfreaks.com/topic/292560-not-supported-tag-variables/#findComment-1496969 Share on other sites More sharing options...
bsmither Posted November 19, 2014 Share Posted November 19, 2014 I would think javascript will still find it: var x = $('a#me').attr('name');or something like that. Will it cause problems later on? Anything is possible. But I would hope that anything discarded would stay discarded. Which means it's free for me to use. Quote Link to comment https://forums.phpfreaks.com/topic/292560-not-supported-tag-variables/#findComment-1496978 Share on other sites More sharing options...
Pavlos1316 Posted November 19, 2014 Author Share Posted November 19, 2014 what i expect is that it will still be suported for a while simply because a lot of existing webpages will not change in years. But if you want to use a better method then you should use the data- tag: <a id="me" data-id="him" data-name="you"> The id tag is NOT deprecated in html5. Thank you very much... I wasn't aware for the data- tag and seems very helpful. Quote Link to comment https://forums.phpfreaks.com/topic/292560-not-supported-tag-variables/#findComment-1496994 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.