Author Archives: Ron

Vertical Marquee using jQuery

This is an example of how to build a simple vertical scrolling marquee using jQuery. The code is from the page “How to Have the Marquee Effect without Using the Marquee Tag (with CSS, JavaScript and jQuery).”… Read More »

Substituting Line Breaks

Based on this question in WordPress support forums. There is a post that contains one big paragraph using line breaks to separate the lines. See if Javascript can be used to change the line breaks to paragraph end and begin tags. This is paragraph 1.This is paragraph 2.This is paragraph 3.This is paragraph 4.… Read More »

Remove DIV using jQuery Based on CSS Value

This is an exercise to see if a DIV could be removed from a page using jQuery by selecting based on a CSS value. It is based on this WordPress support question. What’s happening to the author’s site is that there are a number of rogue DIVs which have a CSS left property set to… Read More »

Upper and Lower Case List Tags

From this support question, trying to see if defining a list in uppercase is different than one in lowercase, i.e., <UL> versus <ul>. lowercase HTML list: 1 2 3 4 Uppercase HTML list: 1 2 3 4 Does this make the block zoom?… Read More »