Pier2Pier Posted October 26, 2012 Share Posted October 26, 2012 Hi, I'm trying to add a unique id to each li created. nothing fancy: menu_1, menu_2. My goal is to target specific menu items to float left while the others float right. I know this topic has come up before but couldnt get a decent solution for it. If there is any help out there it would be greatly appreciated. Please see attached for a visual explanation. Thanks in advance! 1 Link to comment Share on other sites More sharing options...
patrizia.vergassola Posted October 26, 2012 Share Posted October 26, 2012 Hi, I'm trying to add a unique id to each li created. nothing fancy: menu_1, menu_2. My goal is to target specific menu items to float left while the others float right. I know this topic has come up before but couldnt get a decent solution for it. If there is any help out there it would be greatly appreciated. Please see attached for a visual explanation. Thanks in advance! I have the same problem! Any idea? 1 Link to comment Share on other sites More sharing options...
Pier2Pier Posted October 29, 2012 Author Share Posted October 29, 2012 Hey patrizia.vergassola I figured out a dirty hack to get an id on the li.. Until someone can give me a better solution it will just have to do: I added some script to the superfish-modified.js file. I'm sure it will work on any js file you have attached to the header: $(document).ready(function() { for (var i=0; i <= 9; i++) { $(".sf-menu > li:nth-child(" + i + ")").attr("id","menu_" + i); } }); The loop must run to the amount of links you have at the top. Unfortunately this will only work for you first set of li's. Any child li's would need some more scripting to add the id. Hope it helps. I'm not going to close this topic, so hopefully someone will still help us out. Link to comment Share on other sites More sharing options...
Boxon Posted September 8, 2013 Share Posted September 8, 2013 YOU ARE GENIOUS!!! Hack or not, it's working perfectly. Link to comment Share on other sites More sharing options...
Recommended Posts