Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Looking at the page you mention in a comment, <a href="http://jqueryui.com/demos/autocomplete/#combobox" rel="nofollow noreferrer">http://jqueryui.com/demos/autocomplete/#combobox</a> in Chrome F12 editor, it seems that in this browser, a jQuery-generated dropdown list element like <code>foo</code> appears so that each character is inside a separate <code>strong</code> element: <code>&lt;strong&gt;f&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;</code>. In Firefox, I see a generated <code>select</code> element instead, with <code>&lt;option&gt;foo&lt;/option&gt;</code>. I suppose this depends on jQuery, which tries to accommodate for browser differences.</p> <p>In any case, markup like <code>&lt;strong&gt;f&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;</code>, though mostly harmless for texts in the Latin alphabet, may mess up Arabic text badly, since it may make browsers treat each letter as independent and use the independent glyph form for it. Cf. to the question <a href="https://stackoverflow.com/questions/11155849/partially-colored-arabic-word-in-html">Partially colored arabic word in HTML</a>.</p> <p>I hope someone who knows jQuery well can come up with a suggestion to fix this. All that woule be needed is to avoid separating the letters as in <code>&lt;strong&gt;f&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;&lt;strong&gt;o&lt;/strong&gt;</code>, using just <code>&lt;strong&gt;foo&lt;/strong&gt;</code> (if simple <code>foo</code> won’t do).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload