I have the following code:
ul.myList li{ border-right: 1px dotted #000; }
However, on the last element, I need to remove that border a
You can do this using jQuery. So instead of relying on CSS. Use jQuery Selectors to set the property of your last element. I understand that u havent tagged your question with it.
jQuery('ul.myList li:last-child').css("Key","value");