Page 1 of 2
in title tag
Posted: Tue Jun 25, 2013 12:01 am
by Rommel Paras
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
in title tag
Posted: Tue Jun 25, 2013 9:21 am
by Anton Artyukh5836028
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
in title tag
Posted: Thu Jul 04, 2013 8:19 am
by John5269257
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;
in title tag
Posted: Thu Jul 04, 2013 8:23 am
by Maryna Brodina
Hello! Sorry, not sure I understand. Could you explain in more details?
in title tag
Posted: Thu Jul 04, 2013 9:03 am
by John5269257
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
in title tag
Posted: Thu Jul 04, 2013 9:10 am
by Maryna Brodina
in title tag
Posted: Thu Jul 04, 2013 9:38 am
by Maryna Brodina
Perhaps in title you have code /code instead of code /code. Run from console codealert($("title").text());/code to check what you have there
in title tag
Posted: Thu Jul 04, 2013 9:51 am
by John5269257
in the console: alert($("title").text());
results in:
in title tag
Posted: Thu Jul 04, 2013 11:41 am
by Maryna Brodina
thank you, working on it.
in title tag
Posted: Thu Jul 04, 2013 1:34 pm
by Maryna Brodina
Could you give us your public app link?