Trying to go ahead in the analysis of my probleme I noticed : 1/ In firefox with Firebug
The first tab of "onglets" generate three requests - for the contained page "personneGeneral.php" - from this page - for jQuery-1.3.2.min.js - from personneGeneral.js The style script "personneGeneral.css" is not requested here, but precedeengly among the requests of the containing page Firefox uses this style script in the displayed tab whose aspect is ok 2/ In Internet explorer the contained display does not take advantage of this style script "personneGeneral.css" Notice than - for the containing page the links in the header are the followings : <link rel='stylesheet' type='text/css' href='/GeneamaniaTest/ Pages/css/editionPersonne.css' /> <link rel='stylesheet' type='text/css' href='/GeneamaniaTest/ Library/css/tabs/jquery-ui-1.7.2.custom.css' /> <script type='text/javascript' src='/GeneamaniaTest/Library/js/ jquery-1.3.2.min.js' ></script> <script type='text/javascript' src='/GeneamaniaTest/Library/js/ jquery-ui-1.7.2.custom.min.js' ></script> <script type='text/javascript' src='/GeneamaniaTest/jscripts/ editionPersonne.js' ></script> - for the contained page we have <link rel='stylesheet' type='text/css' href='/GeneamaniaTest/ Pages/css/generalPersonne.css' /> <script type='text/javascript' src='/GeneamaniaTest/Library/js/ jquery-1.3.2.min.js' ></script> <script type='text/javascript' src='/GeneamaniaTest/jscripts/ generalPersonne.js' ></script> Can these help to have an idea to localize the problem Regards Charles On 6 jan, 08:55, softdaemon <c.de.longe...@sfr.fr> wrote: > I will try to explain clearly the actual structure > > Page <Edition_Personne> containing the tabs definition with in > particular : > ==================================================== > Its own links concerning the specific behaviour of the containing page > for titles, tabs, and local accessories > - its own style script <Edition_persqonne.css > > - its own action script <EditionPersonne.js> > In the page code : > <div id="onglets" > > <ul> > <li><a > href="./personneGeneral.php"><span>General</span></a></li> > ...................... > In the jsscript > $(document).ready(function(){ > $('#onglets').tabs(); > }); > > Page contained : <personneGeneral.php> (able to act for tests as > standalone) with : > ============================================================ > Its own links (unmodified from upwards) for : > - its own style script: <personneGeneral.css> > - its own action script <personneGeneral.js> with actions defined as : > $(document).ready(function(){ > $('#ajoutNom').click(function(){ > $('#setNom').css('display','block'); > $('#nouveauNom').focus(); > }); > $('#validNom').click(function(){ajouteData('nom',$('#nouveauNom').val > ());}); > $('#annulNom').click(function(){annulNom();}); > ......................................... > > As standalone the page <personneGeneral.php> acts perfectly for style > as for action > As contained page the "same" page displays perfetcly for style > But the function for $('#ajoutNom') (for example) is unacting > > Firebug (in Firefox) from the displayed result (tabs with the > contained form) seems to notice that all the necessary scripts and in > particular the <personneGeneral.js> are loaded. > > Can you have a clear idea of my prblem with that > I dont find what to imagine to have a structured solution. > So many thanks for your interest > > Charles > > On 5 jan, 19:12, Steven Black <ste...@stevenblack.com> wrote: > > > ah! Question: is there script code therein that actually fires > > something? You'll need that. > > > See, if you just load some divs (say) that you expect to be styled, > > tabs won'd re-fire in the presence of these new structures. Anything > > coming-in after the fact will need its own trigger to invoke ui-tabs. > > > It's hard to say because I don't have a clear picture of what you are > > attempting to do but, quite likely, you're missing a trigger-to-action > > in your new js. > > > **--** Steve > > > On Jan 5, 11:09 am, softdaemon <c.de.longe...@sfr.fr> wrote: > > > > Sorry - unattented interrupt !! > > > > When I load the tabs page which in turn loads the contained page, the > > > contained page loads and is correctly displayed. > > > Firebug seems to thinck that the action script is correctly loaded > > > But it has no action > > > > Charles > > > > On 5 jan, 15:36, softdaemon <c.de.longe...@sfr.fr> wrote: > > > > > Space verified and one more added > > > > > I use Firebug in Firefox por my tests > > > > > When I load the contained page alone the action script loads AND is > > > > active > > > > > When I load the tabs page which in turn loads the contained page, the > > > > contained pa > > > > > On 4 jan, 20:06, Steven Black <ste...@stevenblack.com> wrote: > > > > > > You need a space between the type and src attributes in the script > > > > > tag. > > > > > > **--** Steve > > > > > > On Jan 4, 12:08 pm, softdaemon <c.de.longe...@sfr.fr> wrote: > > > > > > > I want to load a content in a page containing tabs ( jQuery 1.3.2 - > > > > > > jQuery UI tabs 1.7.2) with > > > > > > > <li><a > > > > > > href="./Onglets/personneGeneral.php"><span>General</span></a></ > > > > > > li> > > > > > > > The script <personneGeneral.php> contains some lines as > > > > > > <script type='text/javascript'src='/GeneamaniaTest/jscripts/ > > > > > > generalPersonne.js' ></script> > > > > > > > But this script does not load and the contained page is inactive. > > > > > > > Any ideas ? > > > > > > > (Sorry for my english !)
-- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.