Posts by rafaeldefazio • 126 points
2 posts
-
1
votes4
answers868
viewsA: Find current page and change Div style
Yes! There are options in jQuery to add a class to the element (.addClass() link) or directly a CSS (.css() link). The solution would be to add a specific id or class for each element used and then…
jqueryanswered rafaeldefazio 126 -
0
votes2
answers1914
viewsA: Hide or Show div via a Radiobutton via Jquery
Via jQuery? Solution First import jQuery, putting it into head file. After, create a div and define it initially as display: none; in style sheet. After, add interactivity (within a <script>):…