[Solved] How to deactivate a class using jquery [closed]

Use this : $(“#element id”).removeClass(); Calling removeClass with no parameters will remove all of the item’s classes. You can also use (but is not necessarily recommended, the correct way is the one above): $(“#element id”).removeAttr(‘class’); $(“#element id”).attr(‘class’, ”); $(‘#element id’)[0].className=””; If you didn’t want to use jquery you can use java script: document.getElementById(‘item’).className=””; 2 solved … Read more

[Solved] Please identify this output format [closed]

Looks like that is just the string description for the object, which is a result of you using result.toString(); This might be of some help for learning how to parse the result correctly. For example, you can get the first property of the object like so: SoapObject result = (SoapObject) envelope.getResponse(); String firstProperty = result.getProperty(0).toString(); … Read more

[Solved] Don’t know where to start with this navigation bar (nav bar) [closed]

You can try something like this: <nav> <ul> <li> <a href=”http://www.google.nl/”>Menu item 1</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 2</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 3</a> </li> <li> <a href=”http://www.google.nl/”>Menu item 4</a> </li> </ul> </nav> With the CSS of: nav { height: 100px; background-color: blue; } nav > ul { list-style: none; } nav > ul … Read more