[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Andy Matthews
esday, December 10, 2008 8:10 AM To: jQuery (English) Subject: [jQuery] Re: pleeease heeelp me noww wos! something that Chandan said, was helpful !! some one had written a code and in his code define a function with $ it was the problem o... thanks guys :) On Dec 10, 12:

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
wos! something that Chandan said, was helpful !! some one had written a code and in his code define a function with $ it was the problem o... thanks guys :) On Dec 10, 12:21 pm, "Chandan Luthra" <[EMAIL PROTECTED]> wrote: > the jquery library must be conflicting with some other

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Chandan Luthra
the jquery library must be conflicting with some other library try *jquery(funtion(){});* instead of $(document).ready On Wed, Dec 10, 2008 at 2:47 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]>wrote: > > hi > > > i have written jquery for a site; > after a while for sth that i don't know it don'

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
1./ are you sure the div with id="peik" is present on the page? 2./ what is that other script for, it'sreally not good, it's a big eval() call, eval is evil !! LAb[au] _ laboratory for architecture and urbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
thanks Alexandre and other i have this problem yet ! and i have to go to university ! I check your other answers later thanks before... On Dec 10, 1:13 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > :)) > no dear > you're right > but i was trying  somthing that "JQueryProgrammer" was

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
:)) no dear you're right but i was trying somthing that "JQueryProgrammer" was said i just write wrong for a scond see it now ! ;) it has error nooow! On Dec 10, 12:53 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > inhttp://www.finaleshop.com/includes/javascript/rahnema1.js > > you hav

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
On a side note: replace all your "div#myid" by "#myid", it will give a performance boost, since you'll then be using the getElementById instead of first selecting all divs, then finding the one with the id. On Wed, Dec 10, 2008 at 10:57 AM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > so, th

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
so, the top of the code should be: var flag=false; $(document).ready(function(){ $("div#peik").hide(); $('div#cardbanki > div').hide(); $('div#pardakht > div').hide(); }); On Wed, Dec 10, 2008 at 10:53 AM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > in http

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
in http://www.finaleshop.com/includes/javascript/rahnema1.js you have a typo var flag=false; //$().ready(function(){ > $(function() { that ">" sign is problematic. continuing reading... On Wed, Dec 10, 2008 at 10:40 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > (thanks for your answe

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
rors till now! On Dec 10, 12:40 pm, "James Hughes" <[EMAIL PROTECTED]> wrote: > Are you mixing any other frameworks on the page e.g. Prototype? > > > > From: jquery-en@googlegroups.com on behalf of [EMAIL PROTECTED] > Sent: Wed

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread James Hughes
Are you mixing any other frameworks on the page e.g. Prototype? From: jquery-en@googlegroups.com on behalf of [EMAIL PROTECTED] Sent: Wed 10/12/2008 09:36 To: jQuery (English) Subject: [jQuery] Re: pleeease heeelp me noww ok, the code is: var flag

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
(thanks for your answers :*) the urls are : http://www.finaleshop.com/includes/javascript/rahnema1.js http://www.finaleshop.com/includes/javascript/jqCore.js On Dec 10, 12:38 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > can you cut and paste the full html on the page, and show the

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
can you cut and paste the full html on the page, and show the javascript external file links. that should be enoughf thanks. On Wed, Dec 10, 2008 at 10:36 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > ok, the code is: > > var flag=false; > $().ready(function(){ > > >$("div#peik").h

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
ok, the code is: var flag=false; $().ready(function(){ $("div#peik").hide(); $('div#cardbanki > div').hide(); $('div#pardakht > div').hide(); ... the error is on first div (like i said in first post) and if you want url , i must say that it's a persian eshop site h

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
nooo, it wasn't helpful if anybody can help me please send a pm me at yahoo messsenger at ( [EMAIL PROTECTED]) thankks :-s On Dec 10, 12:22 pm, JQueryProgrammer <[EMAIL PROTECTED]> wrote: > Try this: > > $(function() { >     // your code goes here. > > }); > > Also while including the jquery fi

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
give us the url or the main js code, hard to be helpful without info. On Wed, Dec 10, 2008 at 10:22 AM, JQueryProgrammer <[EMAIL PROTECTED]> wrote: > > Try this: > > $(function() { >// your code goes here. > }); > > Also while including the jquery file, write it as: > > > > Check whether thi

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread JQueryProgrammer
Try this: $(function() { // your code goes here. }); Also while including the jquery file, write it as: Check whether this helps. On Dec 10, 2:17 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi > > i have written jquery for a site; > after a while for sth that i don't know it don