BlueCockatoo
Fri, 02 May 2008 14:19:56 -0700
Come on, be nice to noobies even if you have seen the same question asked over and over. Everyone has to get started somewhere and what you're referring to isn't even in the API reference where I would look first for answers (and where search takes you if you type "events"), its in the FAQ. It might be nice if that FAQ was linked to from the Events documentation page, preferably at the top next to the link for "Events (Guide)" and maybe fewer people would be asking all the time. On May 2, 6:20 am, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Always read the docs first. > > http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st... > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On 1 mayo, 23:01, betomurcia <[EMAIL PROTECTED]> wrote: > > > Hello guys > > > I am just starting to play with and learn jquery. I have come to some > > problems and were able to solve them. > > > I think that its something obvious that i am missing in the .get() > > > I am trying to create a page that will never refresh so for the > > navigation bar i decided to use the ajax .get function to change the > > innerhtml of a special div tag. But when i do that the new content > > that is in the html does not seem to work with my jquery rules that i > > have > > > $("a[href^=#]").not(".point").click(function(){ > > $("#main").html('<div id="loading">Loading Content<br /><img > > src="images/loader.gif" alt="Loading"/></div>'); > > $.get("ajaxreader.php?idpage="+$(this).attr("id"),function(data){ > > $("#main").html(data); > > }); > > > }); > > > the links inside the html that get changed are also href="#something" > > so they should work but they don't. > > > Any help or tips will be appreciated? > > If you have a better way to do refreshless sites using jquery can you > > please tell me? > > > Thanks in advance