How to change the colors of a Jquery implementation?

Asked

Viewed 247 times

0

Note the file below;

https://jsfiddle.net/9ub9yk7t/1/

I’ve tried several ways to change the colors that belongs to the H3 tag from blue to red and I’m not succeeding, I can change the other things but can’t change the color from Blue to Red, could someone please give me a hand?

  • Look if this is what you needed https://jsfiddle.net/9ub9yk7t/44/

1 answer

1


I think that would be this.. use the container (div#accordion) to facilitate the selection of the elements you want to style.

PS: I think it would be simpler if you used css to style the elements.

var accordion = $('#accordion');

accordion.children('h3').css({
	'background': 'red',
  'border': '1px solid red'
});

accordion.children('div').css({
'background': '#fcf5eb',
'color': '#3f3f40',

});
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Accordion - Default functionality</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.structure.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#accordion" ).accordion();
  } );
  </script>
</head>
<body>
 
<div id="accordion">
  <h3>Section 1</h3>
  <div>
    <p>
    Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
    ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
    amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
    odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
    </p>
  </div>
  <h3>Section 2</h3>
  <div>
    <p>
    Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet
    purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor
    velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In
    suscipit faucibus urna.
    </p>
  </div>
  <h3>Section 3</h3>
  <div>
    <p>
    Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
    Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
    ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
    lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
    </p>
    <ul>
      <li>List item one</li>
      <li>List item two</li>
      <li>List item three</li>
    </ul>
  </div>
  <h3>Section 4</h3>
  <div>
    <p>
    Cras dictum. Pellentesque habitant morbi tristique senectus et netus
    et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
    faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
    mauris vel est.
    </p>
    <p>
    Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
    Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
    inceptos himenaeos.
    </p>
  </div>
</div>
 



 
</body>
</html>

  • Just one more question! Is there any way to remove this blue border that is found in each tab? i tried it like this, but couldn’t 'accordion.Children('H3:Hover'). css '

  • 1

    Just set the border style.. n? I’ll edit the answer.

  • could you please edit the answer.

  • 1

    @wladyband has already edited by removing the edges, take a look at $(accordion). Children('H3'). css(... , I left the border of the same color.. if Voce wants to remove the border. arrow like 'None';

  • thank you very much :)

  • 1

    It was nothing, if the answer was satisfactory, please mark it as accepted. Thank you.

Show 1 more comment

Browser other questions tagged

You are not signed in. Login or sign up in order to post.