Rommel Paras
Posts: 0
Joined: Fri Jun 14, 2013 2:58 am

  in title tag

The titles on pages which are viewed as mobile web (in a browser) can sometimes appear as ' ':
http://prntscr.com/1brdqy

Looking at the source code, it looks like this is due to the spacing inside the tags:
http://prntscr.com/1brdxz

Perhaps, removing this space/line break would fix the issue.

Page: http://prntscr.com/1brdqy

Anton Artyukh5836028
Posts: 0
Joined: Wed May 08, 2013 12:57 pm

  in title tag

Hi Rommel,

Do you have any action with title in your app?

The fact that the extra whitespace (more than one) is ignored in all HTML tags (except values of inputs).

Try this in dev-console:
code$("title").html(" Some title");/code
code$("title").html("    Some title");/code
and this
code$("title").text(" ");/code
code$("title").html(" ");/code

In the title-tag also ignored and code /code at the beginning and at the end of title.
code$("title").html("ABC    Some title");/code

John5269257
Posts: 0
Joined: Mon Jun 17, 2013 11:04 am

  in title tag

My exported web project also shows the non-breaking space sequence in the address bar. The home page shows the correct page name in the address bar as it's loading, which is then replaced by ampersand nbsp;

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

  in title tag

Hello! Sorry, not sure I understand. Could you explain in more details?

John5269257
Posts: 0
Joined: Mon Jun 17, 2013 11:04 am

  in title tag

In chrome on windows, this is what my exported web app tab looks like (JN is my favicon).
As the page loads the start screen name is shown, which is replaced by what you see in the screenshot

Image

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

  in title tag

thank you! we'll check.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

  in title tag

Perhaps in title you have code /code instead of code /code. Run from console codealert($("title").text());/code to check what you have there

John5269257
Posts: 0
Joined: Mon Jun 17, 2013 11:04 am

  in title tag

in the console: alert($("title").text());

results in: Image

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

  in title tag

thank you, working on it.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

  in title tag

Could you give us your public app link?

Return to “Issues”