[jQuery] Re: select data in a ignoring the

2008-09-30 Thread pedramphp

If I do this with CLone then all my prossesing is with the clone but I
need to have a selector in the Original one not in the Clone so
changing and modifying the clone is not necessary ,the only way is get
a Clone of THe Span Then Remove the Span and then get the content of
the P do some changes on it , after that add the Span again And I
think this is not the right way to Deal with this ...
I'm still working on thiws and waiting for the best way to it
Thanks Pedram

On Sep 30, 7:36 am, equallyunequal <[EMAIL PROTECTED]> wrote:
> $("p:not(span)") would select all paragraphs that are not spans...
> which would be all paragraphs even if they have a child that is a
> span.
> $("p :not(span)") or $("p *:not(span)") would select all paragraphs
> without child spans... which would be none of the paragraphs.
>
> He needs the contents of all paragraphs minus the content of a span.
> The only way (I can think of) to non-destructively get the contents of
> an element minus some of its children is to clone it first, then
> remove the children.
>
> On Sep 29, 3:33 pm, dasacc22 <[EMAIL PROTECTED]> wrote:
>
> > um cant you just do something like $("p:not(span)") ??
>
> > On Sep 28, 3:48 pm, equallyunequal <[EMAIL PROTECTED]> wrote:
>
> > > This should work:
>
> > > var clone = $("p").clone();
> > > clone.find("span").remove();
>
> > > clone.each( function() { console.log(this) } );
>
> > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > Hi Guys,
>
> > > > this is the Code which I am working on
>
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > How could FIlter and Select the text Before the 
> > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-29 Thread pedramphp

Dear sir my solution was wrong I could not work with the CLone of a
 ... so it's a dead case
in your solution I will lose the content of the SPan !!!
unless We store the content of the Span in a temp variable and then
replace it again with it
!!

On Sep 28, 11:17 pm, "Mauricio \(Maujor\) Samy Silva"
<[EMAIL PROTECTED]> wrote:
> Here my solution:
>
> $('p').click(function() {
>    $('p span').replaceWith(' ')   // stripes the span element from
> paragraphs.
>    alert($(p).text()); // shows the paragraphs text 'free' of spans.
>
> });
>
> Mauricio
>
> -Mensagem Original-
> De: <[EMAIL PROTECTED]>
> Para: "jQuery (English)" 
> Enviada em: domingo, 28 de setembro de 2008 17:10
> Assunto: [jQuery] Re: select data in a  ignoring the 
>
>        I tested but it had two Problems
> 1- It Removes the Span so the solution us Make A CLONE from it
> 2- it Result is the Text in the Span which we don't need that so we
> have to put and End(). to return to the code in below works :
>
> I change the Code to this :
>
>      var newP=$("p").clone();
>      newP.find("span").remove().end().text();
>
> does anyone has a better idea
> by the Way thanks MorningZ
>
> Thanks Pedram
>
> On Sep 28, 10:56 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > that wouldn't remove the span,as the expression $(txt) creates a new
> > and not-on-the-DOM object, removing the span would do so just from the
> > jQuery object
>
> > On Sep 28, 3:51 pm, [EMAIL PROTECTED] wrote:
>
> > > Dear MorningZ ,
> > > I don't want to remove the Span I just want to filter the text before
> > > the Span ...
> > > Pedram
>
> > > On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > this is TOTALLY untested, but should work
> > > > $("p").click(function() {
> > > > var txt =$(this).html();
> > > > txt = $(txt).find("span").remove().text();
> > > > alert(txt);
> > > > );
>
> > > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > > Hi Guys,
>
> > > > > this is the Code which I am working on
>
> > > > > 
> > > > > Data which I need to select and it hasn't an attribute
> > > > >  Data in a Span 
> > > > > 
> > > > > 
> > > > > Data which I need to select and it hasn't an attribute
> > > > >  Data in a Span 
> > > > > 
> > > > > 
> > > > > Data which I need to select and it hasn't an attribute
> > > > >  Data in a Span 
> > > > > 
> > > > > How could FIlter and Select the text Before the 
> > > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-28 Thread pedramphp

Mike Alsup or karl I think you guys could help me on this !!
thanks

On Sep 28, 11:51 pm, [EMAIL PROTECTED] wrote:
> I think You have an God Idea But I don't know how to do this with
> Contents()
>
> On Sep 28, 11:31 pm, BB <[EMAIL PROTECTED]> wrote:
>
> > Have you read this?
>
> >http://groups.google.com/group/jquery-en/browse_thread/thread/f10ca88...
>
> > On 28 Sep., 22:28, [EMAIL PROTECTED] wrote:
>
> > > Dear sir my solution was wrong I could not work with the CLone of a
> > >  ... so it's a dead case
> > > in your solution I will lose the content of the SPan !!!
> > > unless We store the content of the Span in a temp variable and then
> > > replace it again with it
> > > !!
>
> > > On Sep 28, 11:17 pm, "Mauricio \(Maujor\) Samy Silva"
>
> > > <[EMAIL PROTECTED]> wrote:
> > > > Here my solution:
>
> > > > $('p').click(function() {
> > > >    $('p span').replaceWith(' ')   // stripes the span element from
> > > > paragraphs.
> > > >    alert($(p).text()); // shows the paragraphs text 'free' of spans.
>
> > > > });
>
> > > > Mauricio
>
> > > > -Mensagem Original-
> > > > De: <[EMAIL PROTECTED]>
> > > > Para: "jQuery (English)" 
> > > > Enviada em: domingo, 28 de setembro de 2008 17:10
> > > > Assunto: [jQuery] Re: select data in a  ignoring the 
>
> > > >        I tested but it had two Problems
> > > > 1- It Removes the Span so the solution us Make A CLONE from it
> > > > 2- it Result is the Text in the Span which we don't need that so we
> > > > have to put and End(). to return to the code in below works :
>
> > > > I change the Code to this :
>
> > > >      var newP=$("p").clone();
> > > >      newP.find("span").remove().end().text();
>
> > > > does anyone has a better idea
> > > > by the Way thanks MorningZ
>
> > > > Thanks Pedram
>
> > > > On Sep 28, 10:56 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > > that wouldn't remove the span,as the expression $(txt) creates a new
> > > > > and not-on-the-DOM object, removing the span would do so just from the
> > > > > jQuery object
>
> > > > > On Sep 28, 3:51 pm, [EMAIL PROTECTED] wrote:
>
> > > > > > Dear MorningZ ,
> > > > > > I don't want to remove the Span I just want to filter the text 
> > > > > > before
> > > > > > the Span ...
> > > > > > Pedram
>
> > > > > > On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > > > > this is TOTALLY untested, but should work
> > > > > > > $("p").click(function() {
> > > > > > > var txt =$(this).html();
> > > > > > > txt = $(txt).find("span").remove().text();
> > > > > > > alert(txt);
> > > > > > > );
>
> > > > > > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > > > > > Hi Guys,
>
> > > > > > > > this is the Code which I am working on
>
> > > > > > > > 
> > > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > > >  Data in a Span 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > > >  Data in a Span 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > > >  Data in a Span 
> > > > > > > > 
> > > > > > > > How could FIlter and Select the text Before the 
> > > > > > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-28 Thread pedramphp

I think You have an God Idea But I don't know how to do this with
Contents()


On Sep 28, 11:31 pm, BB <[EMAIL PROTECTED]> wrote:
> Have you read this?
>
> http://groups.google.com/group/jquery-en/browse_thread/thread/f10ca88...
>
> On 28 Sep., 22:28, [EMAIL PROTECTED] wrote:
>
> > Dear sir my solution was wrong I could not work with the CLone of a
> >  ... so it's a dead case
> > in your solution I will lose the content of the SPan !!!
> > unless We store the content of the Span in a temp variable and then
> > replace it again with it
> > !!
>
> > On Sep 28, 11:17 pm, "Mauricio \(Maujor\) Samy Silva"
>
> > <[EMAIL PROTECTED]> wrote:
> > > Here my solution:
>
> > > $('p').click(function() {
> > >    $('p span').replaceWith(' ')   // stripes the span element from
> > > paragraphs.
> > >    alert($(p).text()); // shows the paragraphs text 'free' of spans.
>
> > > });
>
> > > Mauricio
>
> > > -Mensagem Original-
> > > De: <[EMAIL PROTECTED]>
> > > Para: "jQuery (English)" 
> > > Enviada em: domingo, 28 de setembro de 2008 17:10
> > > Assunto: [jQuery] Re: select data in a  ignoring the 
>
> > >        I tested but it had two Problems
> > > 1- It Removes the Span so the solution us Make A CLONE from it
> > > 2- it Result is the Text in the Span which we don't need that so we
> > > have to put and End(). to return to the code in below works :
>
> > > I change the Code to this :
>
> > >      var newP=$("p").clone();
> > >      newP.find("span").remove().end().text();
>
> > > does anyone has a better idea
> > > by the Way thanks MorningZ
>
> > > Thanks Pedram
>
> > > On Sep 28, 10:56 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > that wouldn't remove the span,as the expression $(txt) creates a new
> > > > and not-on-the-DOM object, removing the span would do so just from the
> > > > jQuery object
>
> > > > On Sep 28, 3:51 pm, [EMAIL PROTECTED] wrote:
>
> > > > > Dear MorningZ ,
> > > > > I don't want to remove the Span I just want to filter the text before
> > > > > the Span ...
> > > > > Pedram
>
> > > > > On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > > > this is TOTALLY untested, but should work
> > > > > > $("p").click(function() {
> > > > > > var txt =$(this).html();
> > > > > > txt = $(txt).find("span").remove().text();
> > > > > > alert(txt);
> > > > > > );
>
> > > > > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > > > > Hi Guys,
>
> > > > > > > this is the Code which I am working on
>
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > How could FIlter and Select the text Before the 
> > > > > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-28 Thread pedramphp

I think You have an God Idea But I don't know how to do this with
Contents()


On Sep 28, 11:31 pm, BB <[EMAIL PROTECTED]> wrote:
> Have you read this?
>
> http://groups.google.com/group/jquery-en/browse_thread/thread/f10ca88...
>
> On 28 Sep., 22:28, [EMAIL PROTECTED] wrote:
>
> > Dear sir my solution was wrong I could not work with the CLone of a
> >  ... so it's a dead case
> > in your solution I will lose the content of the SPan !!!
> > unless We store the content of the Span in a temp variable and then
> > replace it again with it
> > !!
>
> > On Sep 28, 11:17 pm, "Mauricio \(Maujor\) Samy Silva"
>
> > <[EMAIL PROTECTED]> wrote:
> > > Here my solution:
>
> > > $('p').click(function() {
> > >    $('p span').replaceWith(' ')   // stripes the span element from
> > > paragraphs.
> > >    alert($(p).text()); // shows the paragraphs text 'free' of spans.
>
> > > });
>
> > > Mauricio
>
> > > -Mensagem Original-
> > > De: <[EMAIL PROTECTED]>
> > > Para: "jQuery (English)" 
> > > Enviada em: domingo, 28 de setembro de 2008 17:10
> > > Assunto: [jQuery] Re: select data in a  ignoring the 
>
> > >        I tested but it had two Problems
> > > 1- It Removes the Span so the solution us Make A CLONE from it
> > > 2- it Result is the Text in the Span which we don't need that so we
> > > have to put and End(). to return to the code in below works :
>
> > > I change the Code to this :
>
> > >      var newP=$("p").clone();
> > >      newP.find("span").remove().end().text();
>
> > > does anyone has a better idea
> > > by the Way thanks MorningZ
>
> > > Thanks Pedram
>
> > > On Sep 28, 10:56 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > that wouldn't remove the span,as the expression $(txt) creates a new
> > > > and not-on-the-DOM object, removing the span would do so just from the
> > > > jQuery object
>
> > > > On Sep 28, 3:51 pm, [EMAIL PROTECTED] wrote:
>
> > > > > Dear MorningZ ,
> > > > > I don't want to remove the Span I just want to filter the text before
> > > > > the Span ...
> > > > > Pedram
>
> > > > > On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > > > > this is TOTALLY untested, but should work
> > > > > > $("p").click(function() {
> > > > > > var txt =$(this).html();
> > > > > > txt = $(txt).find("span").remove().text();
> > > > > > alert(txt);
> > > > > > );
>
> > > > > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > > > > Hi Guys,
>
> > > > > > > this is the Code which I am working on
>
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > 
> > > > > > > Data which I need to select and it hasn't an attribute
> > > > > > >  Data in a Span 
> > > > > > > 
> > > > > > > How could FIlter and Select the text Before the 
> > > > > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-28 Thread pedramphp

   I tested but it had two Problems
1- It Removes the Span so the solution us Make A CLONE from it
2- it Result is the Text in the Span which we don't need that so we
have to put and End(). to return to the code in below works :

I change the Code to this :

 var newP=$("p").clone();
 newP.find("span").remove().end().text();

does anyone has a better idea
by the Way thanks MorningZ

Thanks Pedram

On Sep 28, 10:56 pm, MorningZ <[EMAIL PROTECTED]> wrote:
> that wouldn't remove the span,as the expression $(txt) creates a new
> and not-on-the-DOM object, removing the span would do so just from the
> jQuery object
>
> On Sep 28, 3:51 pm, [EMAIL PROTECTED] wrote:
>
> > Dear MorningZ ,
> > I don't want to remove the Span I just want to filter the text before
> > the Span ...
> > Pedram
>
> > On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
>
> > > this is TOTALLY untested, but should work
> > > $("p").click(function() {
> > >       var txt =$(this).html();
> > >       txt = $(txt).find("span").remove().text();
> > >       alert(txt);
> > > );
>
> > > On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > > > Hi Guys,
>
> > > > this is the Code which I am working on
>
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > 
> > > >   Data which I need to select and it hasn't  an attribute
> > > >    Data in a Span 
> > > > 
> > > > How could FIlter and Select the text Before the 
> > > > does someone has an Idea ?


[jQuery] Re: select data in a ignoring the

2008-09-28 Thread pedramphp

Dear MorningZ ,
I don't want to remove the Span I just want to filter the text before
the Span ...
Pedram

On Sep 28, 10:22 pm, MorningZ <[EMAIL PROTECTED]> wrote:
> this is TOTALLY untested, but should work
> $("p").click(function() {
>       var txt =$(this).html();
>       txt = $(txt).find("span").remove().text();
>       alert(txt);
> );
>
> On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
>
> > Hi Guys,
>
> > this is the Code which I am working on
>
> > 
> >   Data which I need to select and it hasn't  an attribute
> >    Data in a Span 
> > 
> > 
> >   Data which I need to select and it hasn't  an attribute
> >    Data in a Span 
> > 
> > 
> >   Data which I need to select and it hasn't  an attribute
> >    Data in a Span 
> > 
> > How could FIlter and Select the text Before the 
> > does someone has an Idea ?


[jQuery] select data in a ignoring the

2008-09-28 Thread pedramphp

Hi Guys,

this is the Code which I am working on


  Data which I need to select and it hasn't  an attribute
   Data in a Span 


  Data which I need to select and it hasn't  an attribute
   Data in a Span 


  Data which I need to select and it hasn't  an attribute
   Data in a Span 

How could FIlter and Select the text Before the 
does someone has an Idea ?


[jQuery] Sortable treeview

2008-09-24 Thread pedramphp

Dear folks,
does any one know how could we have a nested sortable treeview  , as
what jorn has did !!
Regards Pedram


[jQuery] tree Sortable

2008-09-04 Thread pedramphp

Dear folk ,
how could we do some sortable jobs with tree s or is there any
sortable which is developed and worked properly ,  I need a sortable
which have some Branchs in it ...
thanks and regards Pedram


[jQuery] Meta tag Keyword Upgrade with jQuery

2008-09-04 Thread pedramphp

Dear Folk,
I've developed a website with ajax capabilities and bookmarkable
supports history,
I would like to give a specefic Meta tag to each page ...
what is the solution ? there is two thing in my mind
1- upgrade the meta tag with jQuery when each pages loads ...
for example
  $("meta[name=keywords]").attr("content","a,b,c,d");
 but as you all know when the page loads meta tag is something else
after that with ajax will be upgrade so I think this may cause some
problem in search engins 
2- load another meta tag in the page 

and this might cause two meta tag in a single page ...

consider there is shopping cart in the web and when each of the
Products nloads the title of the page changes and their own meta tag
came in so does anyone have any idea on this matter

at the end I aim is for me to make my page reachable in search engines
as google and Yahoo

Kind Regards Pedram


[jQuery] Re: form plugin and a progress bar

2008-09-04 Thread pedramphp
Dear andrea I have the same Problem If you found what to do please let me
know

On Thu, Sep 4, 2008 at 2:45 PM, andrea varnier <[EMAIL PROTECTED]>wrote:

>
> Hi :)
> what I am trying to do is a file-upload form that uses ajax (and so
> I'm using the form plugin) and that shows a progress bar while
> uploading.
> I've tried many solutions that I found over the internet but none
> seemed to work.
> possibly I am making mistakes somewhere in the process.
> question is: is there a way to get the data I need? (i.e.: the
> temporary file size)
> the server is running php 5.1
>
> could anyone please help me?
>
> for example, see this:
> http://t.wits.sg/misc/jQueryProgressBar/demo.php
> the form seem to do what I need.
> can this be used along with the form plugin?
> maybe I'm asking a silly question, but I've tried so many times and I
> don't really know what to do... :/
>
> thank you in advance
> andrea
>


[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread pedramphp
fore more information on TranceMonkey pleasecheck
http://ejohn.org/blog/tracemonkey/


On Thu, Sep 4, 2008 at 3:29 AM, <[EMAIL PROTECTED]> wrote:

> I realized from this ParagraphJOhn said : "We already see TraceMonkey
> (under development for about 2 months) performing better than V8 (under
> development for about 2 years)."
>
> maybe TranceMonkey it is going to be better that V8 but as you all know it
> has it's own problems right now
>
> john Said  : "The biggest thing holding TraceMonkey back, at this point,
> is its recursion tracing. As of this moment no tracing is done across
> recursive calls (which puts TraceMonkey as being about 10x slower than V8 at
> recursion). Once recursion tracing lands for Firefox 3.1 I'll be sure to
> revisit the above results."
> Um it depends how you think .. everyone can pick what ever they prefer ...
> I hope this was useful
>
> On Thu, Sep 4, 2008 at 3:14 AM, timothytoe <[EMAIL PROTECTED]> wrote:
>
>>
>> I read the linked article, and did not interpret it the way you did.
>> Certainly John does not come right out and say that TraceMonkey is
>> much better, and he probably knows that if he did, we'd take it with a
>> grain of salt since he works for Mozilla. (Note, though, that John
>> isn't on the TraceMonkey team as far as I can tell--I think he's
>> plenty busy with his other duties.)
>>
>> I think he's excited by ALL the JS developments.
>>
>> On Sep 3, 4:33 pm, [EMAIL PROTECTED] wrote:
>> > Yup John believes TraceMonkey is much better than v8
>> >
>> > On Thu, Sep 4, 2008 at 2:11 AM, Dana Woodman <[EMAIL PROTECTED]> wrote:
>> > > So you're saying that since Jon "thinks" TraceMonkey is better than V8
>> > > (despite the actual tests), than it must be? Or am I reading what you
>> wrote
>> > > wrong?
>> >
>> > > On Sep 3, 2008, at 2:43 PM, [EMAIL PROTECTED] wrote:
>> >
>> > > Dear folk ,for more information please check this Article which John
>> Resig
>> > > performed
>> > > 
>> > >http://ejohn.org/blog/javascript-performance-rundown/
>> > > it says Chrome has been powered by V8 javascript engine , and JOhn and
>> his
>> > > partners are working with TraceMonkey
>> > > and developing it , he believe it is much better than V8 and they will
>> > > import TraceMonkey to firefox 3.2 right now in firefox 3.1 Tracemonkey
>> is
>> > > BUilt in but it is disabled ... so guys I think we have to check our
>> > > websites with CHrome and validate it 
>> > > Regards Pedram
>> >
>> > > On Thu, Sep 4, 2008 at 12:15 AM, Guy Fraser < <[EMAIL PROTECTED]
>> >
>> > > [EMAIL PROTECTED]> wrote:
>> >
>> > >> Bil Corry wrote:
>> > >> > My comment was written in the context of the quote I replied to.
>>  Guy
>> > >> > Fraser wrote that Chrome was "designed to kill MSIE on corporate
>> > >> > networks."  If that is the case, then the fact that Google will
>> also
>> > >> > save money from the conversion of Firefox users certainly doesn't
>> hurt
>> > >> > either (from Google's perspective).  I was subtly suggesting that
>> > >> > while it may be accidental that Google is saving itself some
>> revenue,
>> > >> > it may also be intentional.  It'll be interesting to see if Google
>> > >> > ever offers Chrome-only features or services, which would entice
>> users
>> > >> > to switch to Chrome.
>> >
>> > >> Google have confirmed that they will be working with Mozilla until at
>> > >> least 2011 - can't remember where I read it but it was announced
>> recently.
>> >
>> > >>  From google's perspective, any modern browser will serve their needs
>> > >> IMHO - however, MSIE (including the now "not standard mode by default
>> on
>> > >> intranets any more" version 8 *sigh*) MUST die.
>> >
>> > >> With M$ playing around with unwanted features like web slices, rather
>> > >> than making a browser that actually works, Google have a strong
>> > >> incentive to kill off MSIE from the corporate networks (and remainder
>> of
>> > >> MSIE on home computers) in any way they can. As an industry, we just
>> > >> can't move forward (properly) until MSIE is destroyed.
>> >
>> > >> Guy
>>
>
>


[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread pedramphp
I realized from this ParagraphJOhn said : "We already see TraceMonkey (under
development for about 2 months) performing better than V8 (under development
for about 2 years)."

maybe TranceMonkey it is going to be better that V8 but as you all know it
has it's own problems right now

john Said  : "The biggest thing holding TraceMonkey back, at this point, is
its recursion tracing. As of this moment no tracing is done across recursive
calls (which puts TraceMonkey as being about 10x slower than V8 at
recursion). Once recursion tracing lands for Firefox 3.1 I'll be sure to
revisit the above results."
Um it depends how you think .. everyone can pick what ever they prefer ...
I hope this was useful

On Thu, Sep 4, 2008 at 3:14 AM, timothytoe <[EMAIL PROTECTED]> wrote:

>
> I read the linked article, and did not interpret it the way you did.
> Certainly John does not come right out and say that TraceMonkey is
> much better, and he probably knows that if he did, we'd take it with a
> grain of salt since he works for Mozilla. (Note, though, that John
> isn't on the TraceMonkey team as far as I can tell--I think he's
> plenty busy with his other duties.)
>
> I think he's excited by ALL the JS developments.
>
> On Sep 3, 4:33 pm, [EMAIL PROTECTED] wrote:
> > Yup John believes TraceMonkey is much better than v8
> >
> > On Thu, Sep 4, 2008 at 2:11 AM, Dana Woodman <[EMAIL PROTECTED]> wrote:
> > > So you're saying that since Jon "thinks" TraceMonkey is better than V8
> > > (despite the actual tests), than it must be? Or am I reading what you
> wrote
> > > wrong?
> >
> > > On Sep 3, 2008, at 2:43 PM, [EMAIL PROTECTED] wrote:
> >
> > > Dear folk ,for more information please check this Article which John
> Resig
> > > performed
> > > 
> > >http://ejohn.org/blog/javascript-performance-rundown/
> > > it says Chrome has been powered by V8 javascript engine , and JOhn and
> his
> > > partners are working with TraceMonkey
> > > and developing it , he believe it is much better than V8 and they will
> > > import TraceMonkey to firefox 3.2 right now in firefox 3.1 Tracemonkey
> is
> > > BUilt in but it is disabled ... so guys I think we have to check our
> > > websites with CHrome and validate it 
> > > Regards Pedram
> >
> > > On Thu, Sep 4, 2008 at 12:15 AM, Guy Fraser < <[EMAIL PROTECTED]>
> > > [EMAIL PROTECTED]> wrote:
> >
> > >> Bil Corry wrote:
> > >> > My comment was written in the context of the quote I replied to.
>  Guy
> > >> > Fraser wrote that Chrome was "designed to kill MSIE on corporate
> > >> > networks."  If that is the case, then the fact that Google will also
> > >> > save money from the conversion of Firefox users certainly doesn't
> hurt
> > >> > either (from Google's perspective).  I was subtly suggesting that
> > >> > while it may be accidental that Google is saving itself some
> revenue,
> > >> > it may also be intentional.  It'll be interesting to see if Google
> > >> > ever offers Chrome-only features or services, which would entice
> users
> > >> > to switch to Chrome.
> >
> > >> Google have confirmed that they will be working with Mozilla until at
> > >> least 2011 - can't remember where I read it but it was announced
> recently.
> >
> > >>  From google's perspective, any modern browser will serve their needs
> > >> IMHO - however, MSIE (including the now "not standard mode by default
> on
> > >> intranets any more" version 8 *sigh*) MUST die.
> >
> > >> With M$ playing around with unwanted features like web slices, rather
> > >> than making a browser that actually works, Google have a strong
> > >> incentive to kill off MSIE from the corporate networks (and remainder
> of
> > >> MSIE on home computers) in any way they can. As an industry, we just
> > >> can't move forward (properly) until MSIE is destroyed.
> >
> > >> Guy
>


[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread pedramphp
Yup John believes TraceMonkey is much better than v8

On Thu, Sep 4, 2008 at 2:11 AM, Dana Woodman <[EMAIL PROTECTED]> wrote:

> So you're saying that since Jon "thinks" TraceMonkey is better than V8
> (despite the actual tests), than it must be? Or am I reading what you wrote
> wrong?
>
>
> On Sep 3, 2008, at 2:43 PM, [EMAIL PROTECTED] wrote:
>
> Dear folk ,for more information please check this Article which John Resig
> performed
> 
> http://ejohn.org/blog/javascript-performance-rundown/
> it says Chrome has been powered by V8 javascript engine , and JOhn and his
> partners are working with TraceMonkey
> and developing it , he believe it is much better than V8 and they will
> import TraceMonkey to firefox 3.2 right now in firefox 3.1 Tracemonkey is
> BUilt in but it is disabled ... so guys I think we have to check our
> websites with CHrome and validate it 
> Regards Pedram
>
> On Thu, Sep 4, 2008 at 12:15 AM, Guy Fraser < <[EMAIL PROTECTED]>
> [EMAIL PROTECTED]> wrote:
>
>>
>> Bil Corry wrote:
>> > My comment was written in the context of the quote I replied to.  Guy
>> > Fraser wrote that Chrome was "designed to kill MSIE on corporate
>> > networks."  If that is the case, then the fact that Google will also
>> > save money from the conversion of Firefox users certainly doesn't hurt
>> > either (from Google's perspective).  I was subtly suggesting that
>> > while it may be accidental that Google is saving itself some revenue,
>> > it may also be intentional.  It'll be interesting to see if Google
>> > ever offers Chrome-only features or services, which would entice users
>> > to switch to Chrome.
>>
>> Google have confirmed that they will be working with Mozilla until at
>> least 2011 - can't remember where I read it but it was announced recently.
>>
>>  From google's perspective, any modern browser will serve their needs
>> IMHO - however, MSIE (including the now "not standard mode by default on
>> intranets any more" version 8 *sigh*) MUST die.
>>
>> With M$ playing around with unwanted features like web slices, rather
>> than making a browser that actually works, Google have a strong
>> incentive to kill off MSIE from the corporate networks (and remainder of
>> MSIE on home computers) in any way they can. As an industry, we just
>> can't move forward (properly) until MSIE is destroyed.
>>
>> Guy
>>
>
>
>
>


[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread pedramphp
Dear folk ,for more information please check this Article which John Resig
performed
http://ejohn.org/blog/javascript-performance-rundown/
it says Chrome has been powered by V8 javascript engine , and JOhn and his
partners are working with TraceMonkey
and developing it , he believe it is much better than V8 and they will
import TraceMonkey to firefox 3.2 right now in firefox 3.1 Tracemonkey is
BUilt in but it is disabled ... so guys I think we have to check our
websites with CHrome and validate it 
Regards Pedram

On Thu, Sep 4, 2008 at 12:15 AM, Guy Fraser <[EMAIL PROTECTED]> wrote:

>
> Bil Corry wrote:
> > My comment was written in the context of the quote I replied to.  Guy
> > Fraser wrote that Chrome was "designed to kill MSIE on corporate
> > networks."  If that is the case, then the fact that Google will also
> > save money from the conversion of Firefox users certainly doesn't hurt
> > either (from Google's perspective).  I was subtly suggesting that
> > while it may be accidental that Google is saving itself some revenue,
> > it may also be intentional.  It'll be interesting to see if Google
> > ever offers Chrome-only features or services, which would entice users
> > to switch to Chrome.
>
> Google have confirmed that they will be working with Mozilla until at
> least 2011 - can't remember where I read it but it was announced recently.
>
>  From google's perspective, any modern browser will serve their needs
> IMHO - however, MSIE (including the now "not standard mode by default on
> intranets any more" version 8 *sigh*) MUST die.
>
> With M$ playing around with unwanted features like web slices, rather
> than making a browser that actually works, Google have a strong
> incentive to kill off MSIE from the corporate networks (and remainder of
> MSIE on home computers) in any way they can. As an industry, we just
> can't move forward (properly) until MSIE is destroyed.
>
> Guy
>


[jQuery] Re: jquery ui demo site

2008-09-03 Thread pedramphp
Dear sir please search on google ImageFlow you could find some Plugin I'm
afraid to say there is no JQery Plugin on this matter

On Thu, Sep 4, 2008 at 12:36 AM, Bhaarat Sharma <[EMAIL PROTECTED]> wrote:

>
> Hi,
>
> I am wondering whether jquery ui demo site is written in jquery (would
> be ironic if its not )
>
> http://ui.jquery.com/demos
>
> it looks very appealing how they have things going in a semi-circle.
> I am wondering if this is doable via jquery? and if soare there
> any plugs to achieve this or anything similar w/ tutorial?
>
> Thanks!
>


[jQuery] Re: New Google Browser announced

2008-09-03 Thread pedramphp
Dear folk ,for more information please check this Article which John Resig
performed
http://ejohn.org/blog/javascript-performance-rundown/
it says Chrome has been powered by V8 javascript engine , and JOhn and his
partners are working with TraceMonkey
and developing it , he believe it is much better than V8 and they will
import TraceMonkey to firefox 3.2 right now in firefox 3.1 Tracemonkey is
BUilt in but it is disabled ... so guys I think we have to check our
websites with CHrome and validate it 
Regards Pedram

On Thu, Sep 4, 2008 at 12:17 AM, Guy Fraser <[EMAIL PROTECTED]> wrote:

>
> Ryan Zec wrote:
> > I don't think chrome his wanting to compete with firefox.  From what
>
>
> If they were to compete with FF I think the dev community would start
> voicing some serious concerns. Not in google's best interests.
>


[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread pedramphp
I wonder how come google load pages half the time that firefox 3.0 does ...
thats so interesting..right now I use firefox for its firebug and plugins
and I use safari 3 because it takes small memory...
it is amazing that CHrone has 3% of hits in the internet


[jQuery] Re: Transfer effect in UI

2008-08-28 Thread pedramphp
ok thank then I'll use it ... thanks for your Idea


On Thu, Aug 28, 2008 at 6:15 PM, Richard D. Worth <[EMAIL PROTECTED]> wrote:

> Please note that there is a dedicated mailing list for jQuery UI:
>
> http://groups.google.com/group/jquery-ui
>
> Thanks for pointing out the issue. It looks like an issue with just that
> demo page. Transfer itself doesn't have any problems working in Safari.
> Thanks.
>
> - Richard
>
>
> On Thu, Aug 28, 2008 at 9:12 AM, Andy Matthews <[EMAIL PROTECTED]>wrote:
>
>>
>> I can confirm this. The Transfer effect doesn't work in Safari 3 for the
>> PC.
>>
>>
>> -Original Message-
>> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf Of [EMAIL PROTECTED]
>> Sent: Thursday, August 28, 2008 7:41 AM
>> To: jQuery (English)
>> Subject: [jQuery] Transfer effect in UI
>>
>>
>> Dear folk ,
>> I tested the Transfer effect in
>>
>> http://ui.jquery.com/repository/latest/demos/functional/#ui.effects.general
>>  on Safari 3 , it doesn't work 
>> what is the problem ... I would like to use Transfer Effect 
>> Regards Pedram
>>
>>
>>
>


[jQuery] Firfox 3 and Firefox 2

2008-08-28 Thread pedramphp

Dear folk ,
how could I run firefox 2 and firefox 3 at the same time ... is there
any installation for both . or any trick.. or is there anything like
IE Tester



[jQuery] Re: Transfer effect in UI

2008-08-28 Thread pedramphp

Dear Karl we need your help...

On Aug 28, 4:12 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> I can confirm this. The Transfer effect doesn't work in Safari 3 for the PC.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>
> Behalf Of [EMAIL PROTECTED]
> Sent: Thursday, August 28, 2008 7:41 AM
> To: jQuery (English)
> Subject: [jQuery] Transfer effect in UI
>
> Dear folk ,
> I tested the Transfer effect 
> inhttp://ui.jquery.com/repository/latest/demos/functional/#ui.effects.g...
>  on Safari 3 , it doesn't work 
> what is the problem ... I would like to use Transfer Effect 
> Regards Pedram


[jQuery] Re: Transfer effect in UI

2008-08-28 Thread pedramphp

Dear Karl we need your help...

On Aug 28, 4:12 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> I can confirm this. The Transfer effect doesn't work in Safari 3 for the PC.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>
> Behalf Of [EMAIL PROTECTED]
> Sent: Thursday, August 28, 2008 7:41 AM
> To: jQuery (English)
> Subject: [jQuery] Transfer effect in UI
>
> Dear folk ,
> I tested the Transfer effect 
> inhttp://ui.jquery.com/repository/latest/demos/functional/#ui.effects.g...
>  on Safari 3 , it doesn't work 
> what is the problem ... I would like to use Transfer Effect 
> Regards Pedram


[jQuery] Re: moving Div to a Div

2008-08-28 Thread pedramphp

Dear Richard ,
I think Transfer  is good for me . but the sample in UI
 http://ui.jquery.com/repository/latest/demos/functional/#ui.effects.general
it seems not to work on safari 3 



[jQuery] Transfer effect in UI

2008-08-28 Thread pedramphp

Dear folk ,
I tested the Transfer effect in 
http://ui.jquery.com/repository/latest/demos/functional/#ui.effects.general
 on Safari 3 , it doesn't work 
what is the problem ... I would like to use Transfer Effect 
Regards Pedram


[jQuery] moving Div to a Div

2008-08-28 Thread pedramphp

Dear FOlk ,
I have a shopping cart when I click on the ( Buy this ) Button the
product will be added to the Basket , the think is I would like to
move the Image into the shopping automatically without any
dragging ... so I need to move one Div to another DIv with jQuery
animation could we let the system know where the destination is ...

for example : I'd like this to be Graphically ... I think animate
would help me ...

  some Data



data goes here


$(".data").move(".destination");


thanks and regards Pedram


[jQuery] Re: Drag and Drop for Shopping cart

2008-08-20 Thread pedramphp

Dear folk,
Is any Draggable plugin avalable which is not related to The UI I need
minified Draggable ...
thanks Regards

On Aug 7, 11:25 am, [EMAIL PROTECTED] wrote:
> Dear sir,
> Could You recommand another 
> linkhttp://dmxzone.com/showDetail.asp?TypeId=28&NewsId=14612
> for the use of the Credit Card I'm scared of . if it is in
> Somewhere which is more trustable wopuld be nice for me
> thank Pedram
>
> On Aug 5, 2:40 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
>
> > I would recommend the jQuery UI draggable and droppable plugins. I've
> > published a tutorial on using them to do just that:
>
> >http://rdworth.org/blog/2008/01/drag-and-drop-shopping-cart-with-jque...
>
> > - Richard
>
> > On Fri, Aug 1, 2008 at 7:45 AM, <[EMAIL PROTECTED]> wrote:
>
> > > I want to do some Drag and Drop for shopping Cart with jQuery , which
> > > plugin it's good to use THe UI or something else could someone guide
> > > me on this ... thanks and Regards ...


[jQuery] Re: Lighbox not working

2008-07-20 Thread pedramphp

You have sent me the old version of Lighbox I have used it in my
current project without any problem .But I was fascinated that how
could they upload a Plugin which doesn't support safar!!!

On Jul 18, 10:58 pm, asle <[EMAIL PROTECTED]> wrote:
> I can confirm this. The large image opens in the same window and the
> console says:
> String.vsprintf("Resource interpreted as %1$@ but transferred with
> MIME type [EMAIL PROTECTED]", "document", "image/jpeg"): unsupported format
> character [EMAIL PROTECTED] Treating as a string.
> file:///System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/We 
> bCore.framework/Resources/inspector/inspector.html
>
> This one works fine in 
> Safari:http://leandrovieira.com/projects/jquery/lightbox/
>
> I only have a bug trying to show a series of pictures. Anyone used
> this lightbox plugin?
> It figures out the number of objects in the element (i.ex. gallery) to
> count if the window needs navigation. I can get the demo to work but
> when I put it on my server It always thinks it only has one object.
> The variable "jQueryMatchedObj.length" always says "1" even if I have
> several images in the container.
> Just wonder if anyone tried this.
>
> /asle
>
> On 18 Jul, 21:07, [EMAIL PROTECTED] wrote:
>
> > Yup I just test it , it works with other browsers but in safar 3.1.1
> > it doesn't work but the old version worked 
> > I'm talking about the Direct LInk  
> > http://www.balupton.com/sandbox/jquery_lightbox/
>
> > On Jul 18, 1:57 pm, Michael W <[EMAIL PROTECTED]> wrote:
>
> > > I've actually used this lightbox and I have it working just fine,
>
> > > On Jul 18, 8:46 am, [EMAIL PROTECTED] wrote:
>
> > > > Dear all ,
> > > > I've test the lastest release of Lighbox it doesn't seem to work ..
> > > > has any body any idea about whats wrong with the Plugin by the way
> > > > I've test it by Safari
> > > > this is the Linkhttp://www.balupton.com/sandbox/jquery_lightbox/
> > > > Regards Pedram


[jQuery] Re: Lighbox not working

2008-07-18 Thread pedramphp

Yup I just test it , it works with other browsers but in safar 3.1.1
it doesn't work but the old version worked 
I'm talking about the Direct LInk  
http://www.balupton.com/sandbox/jquery_lightbox/


On Jul 18, 1:57 pm, Michael W <[EMAIL PROTECTED]> wrote:
> I've actually used this lightbox and I have it working just fine,
>
> On Jul 18, 8:46 am, [EMAIL PROTECTED] wrote:
>
> > Dear all ,
> > I've test the lastest release of Lighbox it doesn't seem to work ..
> > has any body any idea about whats wrong with the Plugin by the way
> > I've test it by Safari
> > this is the Linkhttp://www.balupton.com/sandbox/jquery_lightbox/
> > Regards Pedram


[jQuery] Re: Cookie problem in Safari 3.1.1

2008-07-18 Thread pedramphp

Dear  folk, I checked it , I ahve a serious problem with IE7 and 6 ...
when I over load the Cookie some times
($.cookie('SortSize',PagingData.SortSize); ) I receive an Javascript
error  Invalid Argument and eventCache Error
but I don't have any problem in the Other Browsers 

On Jul 18, 10:35 am, [EMAIL PROTECTED] wrote:
> WOw you were right Modified my code
>
> setcookie("SortSize","0", time()+3600);
>
> to
>
> setcookie("SortSize","0");
>
> Right now there is no problem but SOmetimes IE6 have some Runtime
> Error .. . by the Wat my windows is vista so I am Using IE Tester
> Instead of IE 6 it has IE5,6,7,8 built in but I am not sure the
> Brosere is Standard so what is you Idea about the IE6  thanks
> Anyways
> Regards Pedram
>
> -- Forwarded message --
> From: "Karl Rudd" <[EMAIL PROTECTED]>
> Date: Jul 18, 2:03 am
> Subject: Cookie problem in Safari 3.1.1
> To: jQuery (English)
>
> The only problem I've come across with Safari and cookies is that it
> sometimes doesn't like cookies without an expiry time.
>
> I don't know if that's the problem you're coming up against.
>
> Karl Rudd
>
> On Fri, Jul 18, 2008 at 6:09 AM,  <[EMAIL PROTECTED]> wrote:
>
> > Dear folks,
> > My system is working with AJax and I need to save some of my data with
> > Cookies as you all know I have to handle this with javascript cookie
> > and Server Cookie both when I call the AJAX I change the Value of
> > the Cookie then when the AJAX loads the Server PHP file it recognizes
> > the Cookie and it accepts the change .. I don't have ant Problem in
> > IE7 and FF and netscape but I do have Problem with Safari ... Safari
> > would not Recognize the Change by Javascript unless I refresh the
> > Page  ... when REfresh the page everything is allright but ... this is
> > not what I want .
> > Please help me on this...
> > I think I am Clear
> > Thanks Pedram


[jQuery] Lighbox not working

2008-07-18 Thread pedramphp

Dear all ,
I've test the lastest release of Lighbox it doesn't seem to work ..
has any body any idea about whats wrong with the Plugin by the way
I've test it by Safari
this is the Link
http://www.balupton.com/sandbox/jquery_lightbox/
Regards Pedram


[jQuery] Progress bar related to Server

2008-07-18 Thread pedramphp

Dear all,
I am using Progress Bar Plugin in jQuery , I was Wondering  How could
we relate this Static Progress bar to our Php server pages and it
recognizes how much of the php file has been loaded 
as the same as gmail has done it for 3 month i think
thanks Pedram


[jQuery] Re: Cookie problem in Safari 3.1.1

2008-07-18 Thread pedramphp


WOw you were right Modified my code

setcookie("SortSize","0", time()+3600);

to

setcookie("SortSize","0");

Right now there is no problem but SOmetimes IE6 have some Runtime
Error .. . by the Wat my windows is vista so I am Using IE Tester
Instead of IE 6 it has IE5,6,7,8 built in but I am not sure the
Brosere is Standard so what is you Idea about the IE6  thanks
Anyways
Regards Pedram


-- Forwarded message --
From: "Karl Rudd" <[EMAIL PROTECTED]>
Date: Jul 18, 2:03 am
Subject: Cookie problem in Safari 3.1.1
To: jQuery (English)


The only problem I've come across with Safari and cookies is that it
sometimes doesn't like cookies without an expiry time.

I don't know if that's the problem you're coming up against.

Karl Rudd

On Fri, Jul 18, 2008 at 6:09 AM,  <[EMAIL PROTECTED]> wrote:

> Dear folks,
> My system is working with AJax and I need to save some of my data with
> Cookies as you all know I have to handle this with javascript cookie
> and Server Cookie both when I call the AJAX I change the Value of
> the Cookie then when the AJAX loads the Server PHP file it recognizes
> the Cookie and it accepts the change .. I don't have ant Problem in
> IE7 and FF and netscape but I do have Problem with Safari ... Safari
> would not Recognize the Change by Javascript unless I refresh the
> Page  ... when REfresh the page everything is allright but ... this is
> not what I want .
> Please help me on this...
> I think I am Clear
> Thanks Pedram


[jQuery] Cookie problem in Safari 3.1.1

2008-07-17 Thread pedramphp

Dear folks,
My system is working with AJax and I need to save some of my data with
Cookies as you all know I have to handle this with javascript cookie
and Server Cookie both when I call the AJAX I change the Value of
the Cookie then when the AJAX loads the Server PHP file it recognizes
the Cookie and it accepts the change .. I don't have ant Problem in
IE7 and FF and netscape but I do have Problem with Safari ... Safari
would not Recognize the Change by Javascript unless I refresh the
Page  ... when REfresh the page everything is allright but ... this is
not what I want .
Please help me on this...
I think I am Clear
Thanks Pedram


[jQuery] ClientSide Cookie or ServerSide Cookie

2008-07-15 Thread pedramphp

Dear Folks ,
I have to save some of the settings of my Users with the cookies ,
I've done this before with PHP Cookie Header .. right now I was
Wondering If I could that with jQuery instead of PHP ... which one is
Practical ... is there any Example for the jQUery cookie ...
thanks Pedram


[jQuery] Re: Plugin better than Lighbox or Thickbox

2008-07-07 Thread pedramphp

it is much better than LightBox it has a nice Effect when it starts to
get large and then shrink ... we don't have such a thing in
Lightbox 


On Jul 7, 12:25 am, "Kevin Pepperman" <[EMAIL PROTECTED]> wrote:
> That majicthumb script looks a lot like this one.
>
> http://vikjavev.no/highslide/
>
> Charging for this is pretty lame. They would be better off making tham free
> and benefiting from the traffic they would generate.
>
> On Sun, Jul 6, 2008 at 5:07 PM, Alexandre Plennevaux <[EMAIL PROTECTED]>
> wrote:
>
>
>
>
>
> > On Sun, Jul 6, 2008 at 3:39 PM, David Morton <[EMAIL PROTECTED]> wrote:
> > > Why do you think it is better?
>
> > > On Sun, Jul 6, 2008 at 6:59 AM, <[EMAIL PROTECTED]> wrote:
>
> > >> Dear folk,
> > >> do we have such a plugin like below ...
> > >> I have test the Demo version it is much more better from our Lightbox
> > >> Plugin, the only problem it has is with AJAX , it can not support
> > >> it 
> > >> please let me know if there is such an ability in our jQuery
> > >>http://www.magictoolbox.com/magicthumb/
>
> > > --
> > > David Morton
> > > [EMAIL PROTECTED] - bulk address
> > > [EMAIL PROTECTED] - direct to my server
>
> > i can't believe they charge 20 pounds for such a script. I can make
> > this kind of implementation using jqModal in 2 hours.
>
> --
> Rita Rudner  - "When I eventually met Mr. Right I had no idea that his first
> name was Always."


[jQuery] Re: jQuery History Plugin

2008-07-06 Thread pedramphp

Dear Ray ,
  I'm patient about it ...


On Jul 6, 4:09 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> Demanding that someone "do something about it" isn't the way to go about
> asking for assistance, especially on the jQuery mailing list. If you're
> in that urgent of a need, please feel free to try and contribute a
> solution. Otherwise, you will need to be patient.
>
> Rey
> jQuery Team
>
> [EMAIL PROTECTED] wrote:
> > But this is a serious Problem we all know that Gmail has this ability
> > since 2 years ago and still we are stick in it ... this is very bad
> > for some Programmers like us o something about it
>
> > On Jul 6, 1:54 am, timothytoe <[EMAIL PROTECTED]> wrote:
> >> I'm still waiting to find something reasonable.
>
> >> On Jul 5, 3:49 am, [EMAIL PROTECTED] wrote:
>
> >>> Did you find the History Plugin which You need I have the same Problem
> >>> with Bookmarking
> >>> On May 30, 6:11 pm, timothytoe <[EMAIL PROTECTED]> wrote:
>  Great. I'll keep my eyes peeled.
>  On May 30, 7:55 am, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> > On May 30, 1:35 am, timothytoe <[EMAIL PROTECTED]> wrote:
> >> Yes. Oh well.
> >> Where should I watch for updates? Will there be an update of history
> >> to accommodate UI Tabs? Or is it more likely that UI Tabs will
> >> incorporate a history feature?
> > I have roughly rewritten the history plugin already so that it will be
> > much more flexible... (and work in Safari 3 and 
> > IE8):http://www.stilbuero.de/jquery/ui_history/
> > I will then nicely integrate history into tabs so that a user wouldn't
> > have to care too much except for including both plugins and enabling
> > history via an option.
> > Due to immense workload the last few month I got stuck though. The
> > biggest thing missing is actually a strange bug in IE 6, that needs to
> > be fixed before I would call it a beta version.
> > History will be released as part of jQuery UI and I will surely
> > anounce it on the list.
> > --Klaus
>
> > __ Information from ESET NOD32 Antivirus, version of virus 
> > signature database 3244 (20080705) __
>
> > The message was checked by ESET NOD32 Antivirus.
>
> >http://www.eset.com


[jQuery] Plugin better than Lighbox or Thickbox

2008-07-06 Thread pedramphp

Dear folk,
do we have such a plugin like below ...
I have test the Demo version it is much more better from our Lightbox
Plugin, the only problem it has is with AJAX , it can not support
it 
please let me know if there is such an ability in our jQuery
http://www.magictoolbox.com/magicthumb/


[jQuery] Re: jQuery History Plugin

2008-07-06 Thread pedramphp

But this is a serious Problem we all know that Gmail has this ability
since 2 years ago and still we are stick in it ... this is very bad
for some Programmers like us o something about it

On Jul 6, 1:54 am, timothytoe <[EMAIL PROTECTED]> wrote:
> I'm still waiting to find something reasonable.
>
> On Jul 5, 3:49 am, [EMAIL PROTECTED] wrote:
>
> > Did you find the History Plugin which You need I have the same Problem
> > with Bookmarking
>
> > On May 30, 6:11 pm, timothytoe <[EMAIL PROTECTED]> wrote:
>
> > > Great. I'll keep my eyes peeled.
>
> > > On May 30, 7:55 am, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
> > > > On May 30, 1:35 am, timothytoe <[EMAIL PROTECTED]> wrote:
>
> > > > > Yes. Oh well.
>
> > > > > Where should I watch for updates? Will there be an update of history
> > > > > to accommodate UI Tabs? Or is it more likely that UI Tabs will
> > > > > incorporate a history feature?
>
> > > > I have roughly rewritten the history plugin already so that it will be
> > > > much more flexible... (and work in Safari 3 and 
> > > > IE8):http://www.stilbuero.de/jquery/ui_history/
>
> > > > I will then nicely integrate history into tabs so that a user wouldn't
> > > > have to care too much except for including both plugins and enabling
> > > > history via an option.
>
> > > > Due to immense workload the last few month I got stuck though. The
> > > > biggest thing missing is actually a strange bug in IE 6, that needs to
> > > > be fixed before I would call it a beta version.
>
> > > > History will be released as part of jQuery UI and I will surely
> > > > anounce it on the list.
>
> > > > --Klaus


[jQuery] History Plugin Compatible with jQuery 1.2.6

2008-07-05 Thread pedramphp

Hi folks,

I'm using JQuery in my project to handle AJAX events. Obviously I want
my website to be bookmarkable.

This Jquery plugin seems nice, however, upon further examination, some
problems have been revealed. For instance if I manually enter the URL
with hash value, then any AJAX link I click on will NOT change the
browser's address bar (have to refresh the page in order to see the
new hash value).

Does anyone know a decent AJAX history/bookmark library that works
well? My requirements are:

- it has to be cross-browser compatible (Firefox, Safari, Opera, IE6
and IE7)
- responses to manually entered hash value
- hash value changes upon ajax clicks, even if I entered a hashed URL
in the first place
- default function for no hash value situations
- easy to adopt and maintain
I have also used these LInks but they all had some Problems and there
were not developed
http://www.stilbuero.de/jquery/ui_history/
and
http://www.mikage.to/jquery/jquery_history.html and 
http://stilbuero.de/jquery/history/

thanks



[jQuery] Re: jQuery History Plugin

2008-07-05 Thread pedramphp

Did you find the History Plugin which You need I have the same Problem
with Bookmarking

On May 30, 6:11 pm, timothytoe <[EMAIL PROTECTED]> wrote:
> Great. I'll keep my eyes peeled.
>
> On May 30, 7:55 am, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
> > On May 30, 1:35 am, timothytoe <[EMAIL PROTECTED]> wrote:
>
> > > Yes. Oh well.
>
> > > Where should I watch for updates? Will there be an update of history
> > > to accommodate UI Tabs? Or is it more likely that UI Tabs will
> > > incorporate a history feature?
>
> > I have roughly rewritten the history plugin already so that it will be
> > much more flexible... (and work in Safari 3 and 
> > IE8):http://www.stilbuero.de/jquery/ui_history/
>
> > I will then nicely integrate history into tabs so that a user wouldn't
> > have to care too much except for including both plugins and enabling
> > history via an option.
>
> > Due to immense workload the last few month I got stuck though. The
> > biggest thing missing is actually a strange bug in IE 6, that needs to
> > be fixed before I would call it a beta version.
>
> > History will be released as part of jQuery UI and I will surely
> > anounce it on the list.
>
> > --Klaus


[jQuery] History Plugin Problem

2008-07-05 Thread pedramphp

Dear all JQuery Programmers ,
I am Stuck with this History Plugin ... I need to have the History
ability ... my Website has alot of Links so we need to have the
control of them by the History  so I searched in google And I found
this Plugin]
http://www.stilbuero.de/jquery/ui_history/
and
http://www.mikage.to/jquery/jquery_history.html and
http://stilbuero.de/jquery/history/
all of them has Problem and there are not developed there is some Few
Bugs in them and it could not work in a Huge project so what is you
suggestion who has the best code and what is the solution I am not
eager to do this job by jQuery if somebody has a good which is full
cor javascript no problem ... I'd be happy ... please somebody help me
on this  my project is a SHop POrtal which is full Ajax as you
know in the shop websites something like History is necessary...
Regards Pedram


[jQuery] History Plugin Problem

2008-07-05 Thread pedramphp

Dear all JQuery Programmers ,
I am Stuck with this History Plugin ... I need to have the History
ability ... my Website has alot of Links so we need to have the
control of them by the History  so I searched in google And I found
this Plugin]
http://www.stilbuero.de/jquery/ui_history/
and
http://www.mikage.to/jquery/jquery_history.html and
http://stilbuero.de/jquery/history/
all of them has Problem and there are not developed there is some Few
Bugs in them and it could not work in a Huge project so what is you
suggestion who has the best code and what is the solution I am not
eager to do this job by jQuery if somebody has a good which is full
cor javascript no problem ... I'd be happy ... please somebody help me
on this  my project is a SHop POrtal which is full Ajax as you
know in the shop websites something like History is necessary...
Regards Pedram


[jQuery] Innerfade +UI 1.5 problem

2008-06-12 Thread pedramphp

In would like to use some of the UI effects in my Innerfade Plugin I
did as below ...
but how could  I manually Edit the Innerfade Plugin to add an Effect
to it...
I've checked it with slideLeft effect
please help me on this










<  !-- SOME dATA -->



 // EXAMPLE ONE WORKS
 effect("#slideRight", "slide", { direction: "right" });
 // this Works



 // EXAMPLE 2 DOSN'T WORK
   $("#slideRight").innerfade({
 animationtype: "slideRight",
 speed: 1300,
 timeout: WaitProd,
 type: 'sequence',
 containerheight: CntHeight+'px'
 });










 /*-- Part of  INNERFADE.JS   PLUGIN
 WE WANT TO USE THE EFFECT IN THIS PLUGIN
 ..
 
 .
   $.innerfade.next = function(elements, settings, current, last) {
   if (settings.animationtype == 'slide') {
   $(elements[last]).slideUp(settings.speed);
   $(elements[current]).slideDown(settings.speed);
   } else if (settings.animationtype == 'fade') {
   $(elements[last]).fadeOut(settings.speed);
   $(elements[current]).fadeIn(settings.speed, function() {
   removeFilter($(this)[0]);
   });
   }else if (settings.animationtype == 'slideRight') {
  effect(elements[last], "slide", { direction: "right" });
  effect(elements[last], "slide", { direction: "left" });

   } else
   alert('Innerfade-animationtype must either be \'slide\' or
\'fade\'');


   .
   .
   ...
   --*/


[jQuery] innerfade uses the UI 1.5 with Jq 1.2.6 problem

2008-06-11 Thread pedramphp

In would like to use some of the UI effects in my Innerfade Plugin I
did as below ...
but how could  I manually Edit the Innerfade Plugin to add an Effect
to it...
I've checked it with slideLeft effect
please help me on this










<  !-- SOME dATA -->



 // EXAMPLE ONE WORKS
  effect("#slideRight", "slide", { direction: "right" });
  // this Works



  // EXAMPLE 2 DOSN'T WORK
$("#slideRight").innerfade({
  animationtype: "slideRight",
  speed: 1300,
  timeout: WaitProd,
  type: 'sequence',
  containerheight: CntHeight+'px'
  });










  /*-- Part of  INNERFADE.JS   PLUGIN
  WE WANT TO USE THE EFFECT IN THIS PLUGIN
  ..
  
  .
$.innerfade.next = function(elements, settings, current, last) {
if (settings.animationtype == 'slide') {
$(elements[last]).slideUp(settings.speed);
$(elements[current]).slideDown(settings.speed);
} else if (settings.animationtype == 'fade') {
$(elements[last]).fadeOut(settings.speed);
$(elements[current]).fadeIn(settings.speed, function() {
removeFilter($(this)[0]);
});
}else if (settings.animationtype == 'slideRight') {
   effect(elements[last], "slide", { direction: "right" });
   effect(elements[last], "slide", { direction: "left" });

} else
alert('Innerfade-animationtype must either be \'slide\' or
\'fade\'');


.
.
...
--*/


[jQuery] Accordion Problem

2008-06-07 Thread pedramphp

I have Problem this Accordion ... te Pack or Min version  of Accordion
Doesn't work with 1.2.6 if some one has the right Min or Pack
Code ,please send me the Link...


[jQuery] InnerFade Height Problem

2008-06-07 Thread pedramphp

In my Innerfade Plugin I have the Height problem it couldn't find the
Height Automaically ...

we should set the height manually if we don't it could not use it

another Question is how Could we Import the Core.effect in UI 1.5 to
the innerFade Plugin 
I did it and it couldn't recognize it


[jQuery] Re: Gmail Progress Bar

2008-06-07 Thread pedramphp
We need to do this progressBar just as google did  what is inside their
Codes
what is the mystery



On 6/6/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> I checked this Progress Bar Long ago but this is a sample use of it
> there is no Server LINK and Fetching data In it and there is no
> Process To figure how much data has been download  so what should
> we do how did the google Guys did this 
>
> On Jun 6, 8:18 pm, P-Do <[EMAIL PROTECTED]> wrote:
> > There is a progress bar jquery plugin (I'm sure there must be more
> > too) here:http://digitalbush.com/projects/progress-bar-plugin
> >
> > On May 24, 6:11 am, [EMAIL PROTECTED] wrote:
> >
> > > Recently Google Added a Progress bar in gmail .. without any SWF
> > > uploader and any Flashes ... And it works in IE and FIrefox ... how
> > > could we do the same in jquery and How did they do this...?
>


[jQuery] getScript Problem

2008-06-07 Thread pedramphp

we need some triple javascript files to load with $.getScript in
jQuery .. how could I do this 
if all the js files was loaded the A function get activated I need
something like this
$.getScript("test1.js,test2.js,test3.js,function(){

alert("Some thing Activate")

});

but there isn't capability a thing in jQuery


[jQuery] Re: Shadow jQUery

2008-06-06 Thread pedramphp

is there any Simple Example of the Shadow that we can Download it and
Compatible with 1.2.6

On May 28, 8:21 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> The demo doesn't seem to work.  Not sure.
>
> Glen
>
> On Wed, May 28, 2008 at 9:35 AM, owen <[EMAIL PROTECTED]> wrote:
>
> > Is this obsolete?
>
> >http://docs.jquery.com/UI/Shadow
>
> >  -- Owen


[jQuery] Re: Gmail Progress Bar

2008-06-06 Thread pedramphp

I checked this Progress Bar Long ago but this is a sample use of it
there is no Server LINK and Fetching data In it and there is no
Process To figure how much data has been download  so what should
we do how did the google Guys did this 

On Jun 6, 8:18 pm, P-Do <[EMAIL PROTECTED]> wrote:
> There is a progress bar jquery plugin (I'm sure there must be more
> too) here:http://digitalbush.com/projects/progress-bar-plugin
>
> On May 24, 6:11 am, [EMAIL PROTECTED] wrote:
>
> > Recently Google Added a Progress bar in gmail .. without any SWF
> > uploader and any Flashes ... And it works in IE and FIrefox ... how
> > could we do the same in jquery and How did they do this...?


[jQuery] Validation Plugin Doesn't work with jQuery 1.2.5

2008-05-25 Thread pedramphp

My system it's working with jQuery 1.2.3 and has the validation Plugin
with the latest version , but When I changed the jquery to 1.2.5 it
doesn't work 
What is the Problem


[jQuery] Gmail Progress Bar

2008-05-24 Thread pedramphp

Recently Google Added a Progress bar in gmail .. without any SWF
uploader and any Flashes ... And it works in IE and FIrefox ... how
could we do the same in jquery and How did they do this...?


[jQuery] Shadow jQUery

2008-05-02 Thread pedramphp

I need Image Shadow with jQuery I think it is a the main jQuery.
1.2.3.js
If there is an Example for the Code please let me know 
Regards Pedram


[jQuery] Horirzonal Accordion

2008-05-02 Thread pedramphp

I need a Horizonal Accordion code for Download ..
if there is a link for Download Please let me know !!!
Regards Pedram


[jQuery] jQuery Effect Problem In Firefox 2

2008-05-02 Thread pedramphp

Recently I faced A little Problem with my jQuery  at my FireFox
Browser I check My codes with 2 browsers which are Standard and
Suitable for testing
1-IE7
2- Firefox 2

I used some jQUery Effects such as toggle ,slideDown, slideUp and etc…
There was no problem in my IE7 but in one situation there was a
problem in my firefox …


If we scroll the page down at thebottom of the page there is button
which is Clickable and it will do some toggle and slide effects  , in
Firefox We will face some Flashes in the page and some jumping in the
paging which only occurs in fireffox… Who could help me on this you
can try it , I’ve seen this problem in everywhere and this is not user
Friendly ….
What should we do …
For example in my project at the Bottom of the page I had some paging
for the content And this is my code



/Down Paging starts
***/
$("table#downProPaging span a").click(function(){
  var PagingData={
start:$(this).parent().attr("id"),
bId:$("#DownDataPostBid").val()
  };
  $.ajax({
url: 'pro/showpro/DownData.php',
type: 'POST',
data: PagingData,// id of the tree
dataType: 'html',
cache: false,
beforeSend: function() {
  $("#showProDownMsg:visible").hide();
  $("#down_in_data_pro").slideUp(1000);
  $("#down_in_loading_pro").show(1000);
  $("#down_in_loading_pro").html(inimg);
},
error: function(){ // if the data has not been send
  alert('xml error');
},
success: function (txt){
  $("#down_in_loading_pro").hide(1000);
  $("#down_in_data_pro").html(txt);
  $("#down_in_data_pro").slideDown(1000);

}
  });
  return false;
});

/Down Paging Ends
***/


Regards Pedram


[jQuery] Problem wih jQery Effect i FireFox

2008-05-02 Thread pedramphp

Hi everyone ,
currently I am using jQUery in my Projectwhich is a CMS and some kind
of Portal ,

Recently I faced A little Problem with my jQuery  at my FireFox
Browser
I check My codes with 2 browsers which are Standard and Suitable for
testing
1-IE7
2- Firefox 2

I used some jQUery Effects such as toggle ,slideDown, slideUp and etc…
There was no problem in my IE7 but in one situation there was a
problem in my firefox …


If we scroll the page down at thebottom of the page there is button
which is Clickable and it will do some toggle and slide effects  , in
Firefox
We will face some Flashes in the page and some jumping in the paging
which only occurs in fireffox…
Who could help me on this you can try it , I’ve seen this problem in
everywhere and this is not user Friendly ….
What should we do …
For example in my project at the Bottom of the page I had some paging
for the content
And this is my code


int my Firefox Browser which is versian 2.1.14 the latest versian of
the 2 ...
if the content Scrolls down in the page to the Bottom of the page then
if we do some slideDown or slideUp Effect the page starts to Flash for
a second ... but I don't have this Problem IN the IE 7 ...
so what is the solution

this is my code ... I did some Paging stuff with jQuery


/Down Paging starts
***/
$("table#downProPaging span a").click(function(){
  var PagingData={
start:$(this).parent().attr("id"),
bId:$("#DownDataPostBid").val()
  };
  $.ajax({
url: 'pro/showpro/DownData.php',
type: 'POST',
data: PagingData,// id of the tree
dataType: 'html',
cache: false,
beforeSend: function() {
  $("#showProDownMsg:visible").hide();
  $("#down_in_data_pro").slideUp(1000);
  $("#down_in_loading_pro").show(1000);
  $("#down_in_loading_pro").html(inimg);
},
error: function(){ // if the data has not been send
  alert('xml error');
},
success: function (txt){
  $("#down_in_loading_pro").hide(1000);
  $("#down_in_data_pro").html(txt);
  $("#down_in_data_pro").slideDown(1000);

}
  });
  return false;
});

/Down Paging Ends
***/


Regards Pedram


[jQuery] jQuery SlideDown and SlideUp Problem

2008-04-28 Thread pedramphp

int my Firefox Browser which is versian 2.1.14 the latest versian of
the 2 ...
if the content Scrolls down in the page to the Bottom of the page then
if we do some slideDown or slideUp Effect the page starts to Flash for
a second ... but I don't have this Problem IN the IE 7
...
so what is the solution

this is my code ... I did some Paging stuff with jQuery


/Down Paging starts
***/
$("table#downProPaging span a").click(function(){
  var PagingData={
start:$(this).parent().attr("id"),
bId:$("#DownDataPostBid").val()
  };
  $.ajax({
url: 'pro/showpro/DownData.php',
type: 'POST',
data: PagingData,// id of the tree
dataType: 'html',
cache: false,
beforeSend: function() {
  $("#showProDownMsg:visible").hide();
  $("#down_in_data_pro").slideUp(1000);
  $("#down_in_loading_pro").show(1000);
  $("#down_in_loading_pro").html(inimg);
},
error: function(){ // if the data has not been send
  alert('xml error');
},
success: function (txt){
  $("#down_in_loading_pro").hide(1000);
  $("#down_in_data_pro").html(txt);
  $("#down_in_data_pro").slideDown(1000);

}
  });
  return false;
});

/Down Paging Ends
***/
Regards Pedram


[jQuery] jQuery SlideDown and SlideUp Problem

2008-04-28 Thread pedramphp

int my Firefox Browser which is versian 2.1.14 the latest versian of
the 2 ...
if the content Scrolls down in the page to the Bottom of the page then
if we do some slideDown or slideUp Effect the page starts to Flash for
a second ... but I don't have this Problem IN the IE 7
...
so what is the solution

this is my code ... I did some Paging stuff with jQuery


/Down Paging starts
***/
$("table#downProPaging span a").click(function(){
  var PagingData={
start:$(this).parent().attr("id"),
bId:$("#DownDataPostBid").val()
  };
  $.ajax({
url: 'pro/showpro/DownData.php',
type: 'POST',
data: PagingData,// id of the tree
dataType: 'html',
cache: false,
beforeSend: function() {
  $("#showProDownMsg:visible").hide();
  $("#down_in_data_pro").slideUp(1000);
  $("#down_in_loading_pro").show(1000);
  $("#down_in_loading_pro").html(inimg);
},
error: function(){ // if the data has not been send
  alert('xml error');
},
success: function (txt){
  $("#down_in_loading_pro").hide(1000);
  $("#down_in_data_pro").html(txt);
  $("#down_in_data_pro").slideDown(1000);

}
  });
  return false;
});

/Down Paging Ends
***/
Regards Pedram


[jQuery] nested Sortable Bug

2008-03-24 Thread pedramphp

Dear sir ,
I'm working with nested sortable Plugin 
http://plugins.jquery.com/project/NestedSortable
the ploblem is this plugin only works with jQuery 1.1.3 and if I
change the jQuery source file to 1.2.3 it only Drags the Items
Once 
this Ploblem Accured in IE7 , I need this plugin badly in my projecty
what is the solution has anyone worked with this Before !!!


[jQuery] nested Sortable Bug

2008-03-24 Thread pedramphp

Dear sir ,
I'm working with nested sortable Plugin 
http://plugins.jquery.com/project/NestedSortable
the ploblem is this plugin only works with jQuery 1.1.3 and if I
change the jQuery source file to 1.2.3 it only Drags the Items
Once 
this Ploblem Accured in IE7 , I need this plugin badly in my projecty
what is the solution has anyone worked with this Before !!!


[jQuery] nested Sortable Bug

2008-03-24 Thread pedramphp
Dear sir ,
I'm working with nested sortable Plugin
http://plugins.jquery.com/project/NestedSortable
the ploblem is this plugin only works with jQuery 1.1.3 and if I change the
jQuery source file to 1.2.3 it only Drags the Items Once 
this Ploblem Accured in IE7 , I need this plugin badly in my projecty what
is the solution has anyone worked with this Before !!!
Regards Pedram


[jQuery] nested Sortable Bug!!!

2008-03-24 Thread pedramphp

Dear sir ,
I'm working with nested sortable Plugin 
http://plugins.jquery.com/project/NestedSortable
the ploblem is this plugin only works with jQuery 1.1.3 and if I
change the jQuery source file to 1.2.3 it only Drags the Items
Once 
this Ploblem Accured in IE7 , I need this plugin badly in my projecty
what is the solution has anyone worked with this Before !!!
Regards Pedram


[jQuery] Re: formatting/defining variable values

2008-02-21 Thread pedramphp
HI there ,
Please send me the HTML form

On Thu, Feb 21, 2008 at 2:02 AM, Robert Hill <[EMAIL PROTECTED]> wrote:

>
> Hello
>
> I'm collecting a number of values from various form elements:
> textfield, radio, checkbox.
>
> since some of the fields aren't require on my form, when I POST their
> values they are returned as 'undefined'
>
> is there a way in Jquery that would allow me to set all variables that
> are undefined with a given value like "N/A" or even just ""?
>
> for example, after the form is submitted, I'm using the following code
> to populate my values:
>//cancer vars
>var cancerVal = $("input[name='cancer']:checked").val();
>var cancerTypeVal = $("#cancerType").val();
>var cancerDateVal = $("#cancerDate").val();
>var chemoCanVal =
> $("input[name='chemoCan']:checked").val();
>var radiationCanVal =
> $("input[name='radiationCan']:checked").val();
>var surgeryCanVal =
> $("input[name='surgeryCan']:checked").val();
>var otherCanMoreVal =
> $("input[name='otherCanMore']:checked").val();
>
> doing something like:
>
> var chemoCanVal ="";
>
> before the submit does not seem to help.
>
> Alternately, if there is a way that I can use a function to replace
> all instances of 'undefined' with another value after the form is
> submitted, that too would work.
>
> thanks in advance!
>
> cheers,
> -robert
>