Answers
1
// an example of how to overwrite the margin-bottom on a p tag
$('p').css({ 'margin-bottom' : '20px' });
// an example of how to change the class of an element
$('p.myClass').addClass('anotherClass');
// or you can also removeClass
$('p').removeClass('myClass');
$('p').css({ 'margin-bottom' : '20px' });
// an example of how to change the class of an element
$('p.myClass').addClass('anotherClass');
// or you can also removeClass
$('p').removeClass('myClass');

