Skip to content
Advertisement

jQuery toggle function disorts text

I have some functions to toggle 2 parts of an HTML if I click the ‘rejt‘ button. Normally it looks like this: Normal

But after using the button to toggle it back again, it gets disorted like this: Disorted

Please help me fix this.

Code sample:

JavaScript
JavaScript

Advertisement

Answer

First of all, what’s with the font and id tags? Not sure what jQuery is going to do when toggling a tag it knows nothing about (id).

More importantly, these id tags are set to display:inline-block after the toggle, such as:

JavaScript

That element is adjacent to <id id="bottomtext2" />, also set to inline-block. This would explain the side-by-side display.

Broken Fiddle: http://jsfiddle.net/T8aWV/1/
Fixed Fiddle: http://jsfiddle.net/T8aWV/

Get rid of the id tags and make them divs. This fixed the problem for me.

See also: “Periodic Table” of HTML 5 tags (and when to use them)

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement