Your comments

Ok good news!!!
I trashed the fusebox app and re-downloaded it. I also went back to the simplest form of my code. And it worked.
Thanks for you quick responses, just knowing something is supposed to work is half the battle.

Also it is good to know the panel.onloadcompletes are specifically designed for datasource related calls.

The design idea behind this wire file will be a magazine store front where web snippets may possibly load. Is it a good idea to unload these web snippets when opening other wire files from this wire file or is that sort of thing handled automatically?

Sample:

<wire>
<main>
<panel name="web" alias="WEB" height="100%" width="100%" ypos="0">
<web name="web-panel" alias="WEBPANEL" width="100%" height="95%" valign="bottom" url="http://www.sendmyad.com"></web>
</panel>
</main>
</wire>
Yes i can browse the internet fine.

Sample code
Hi i am attempting to auto load a web object.
My first try was to simply fill out the url field, save my wire file and load up in fusebox.
That did not work. Should it?

The next attempt was to create a panel and nest the web tag inside of the panel. Then in the panel's onloadcomplete call i loaded the url through an action. This did not work either.

I actually then called a coworker, had him create a similar test and we both shared his result because it worked for him but still not on my ipad fusebox. I am on the latest version of fusebox and the latest ios. Can you tell me what might be wrong?

Here is my sample code.

<wire>
<main>
<panel name="web" alias="WEB" height="100%" width="100%" ypos="0" onloadcomplete="panelonloadcomplete">
<toolbar name="toolbar" height="5%" width="100%" align="left" valign="top">
<panel name="button" width="10%" height="80%" align="left" margin="10" valign="center" background="#888888" cornerradius="5" >
<text name="back" width="50%" height="50%" color="#000000" font="" size="12" align="center" valign="center" text="Back"></text>
</panel>
</toolbar>
<web name="web-panel" alias="WEBPANEL" width="100%" height="95%" valign="bottom" url="about:blank"></web>
</panel>
</main>
<actions>
<action name="panelonloadcomplete">
<load url="http://constitutioncenter.org" target="web-panel"/>
</action>
</actions>
</wire>