Hello I am making a site and this code lets me have several pages in 1 .html file. Can the iterative-ness of this code be avoided? Can it be simplified?
answered
|
Hello I am making a site and this code lets me have several pages in 1 .html file. Can the iterative-ness of this code be avoided? Can it be simplified? answered |
||||
|
what do you mean by if you want your code to be DRY you could just write somthing like this:
this will take all selectors, one at the time, and make all of them run that code of yours, basically the same as you typed, but in one selector only EDIT Fixed div showing EDIT2 added jsfiddle to show it working: http://jsfiddle.net/NicosKaralis/Vurjf/ |
|||||||||||||||
|
|
Assuming that the things being clicked are something other than anchor links you could give the elements all the same class and write this once - EDIT: made a change based on the information that these are anchor links.
|
|||||||||||||
|
|
You can use a for loop and construct the selectors:
You could also add a handler to all |
|||||
|
iterativerefers to a loop. – ryan Feb 5 at 19:44