skwidgets
skwidgets

Reputation: 291

Jquery Mobile Page trasition displaying Extra elements

http://kzoomarketing.com/hapman/#main

This is a link to an app that I have been working on. The issue is that the page transitions display an unstyled menu that is in the footer of a few pages.

I cannot for the life me figure out where in the code this is coming from.

If any one can view the source and help me I would appreciate it.

Upvotes: 0

Views: 83

Answers (1)

Nachiket
Nachiket

Reputation: 6187

On line, 1363 in your code..

<div id="reloadBtn" width="100%"><img style="margin-left:49%; margin-top: 1%;
   cursor: pointer;" "id="reloadSavedFlowcharts" src="images/blue/reload_24x28.png" 
   onClick="synchFlowcharts()"></div>

You have put wrong additional " before id=.

Correct one:

<div id="reloadBtn" width="100%"><img style="margin-left:49%; margin-top: 1%;
   cursor: pointer;" id="reloadSavedFlowcharts" src="images/blue/reload_24x28.png" 
   onClick="synchFlowcharts()"></div>

Upvotes: 1

Related Questions