UNSUBSCRIBE ME PLEASE!!!
  ----- Original Message ----- 
  From: jquery-en+nore...@googlegroups.com 
  To: Abridged Recipients 
  Sent: Monday, January 25, 2010 12:02 PM
  Subject: [jQuery] Abridged summary of jquery-en@googlegroups.com - 27 
Messages in 13 Topics


    Today's Topic Summary
  Group: http://groups.google.com/group/jquery-en/topics

    a.. Two search kriteria [3 Updates] 
    b.. This code is too complex for a noob, can someone break this down. [3 
Updates] 
    c.. Using variable in animate()'s properties [2 Updates] 
    d.. XML object to JSON [1 Update] 
    e.. loading osx (eric martin) to show errors [8 Updates] 
    f.. jQuery now integrated into Visual WebGui web/cloud platform [1 Update] 
    g.. VALIDATE - How to access message in highlight function? [1 Update] 
    h.. (validate) block event Return [1 Update] 
    i.. JQuery Ajax serialize [1 Update] 
    j.. Are API docs in sync with latest jquery library [1 Update] 
    k.. iframe on another iframe [3 Updates] 
    l.. Abridged summary of jquery-en@googlegroups.com - 19 Messages in 12 
Topics [1 Update] 
    m.. Abridged summary of jquery-en@googlegroups.com - 19 Messages in 12 
Topics [1 Update] 
   Topic: Two search kriteria
    Frank Becker <computersac...@beckerwelt.de> Jan 24 08:18PM +0100 ^
     
    > form.ZIP.value. Or maybe it's .value without parenthesis, I don't
    > remember, and I'm not in the mood to go look it up for you. :) But
    > bottom line, don't use 'form.ZIP'. That's the part that more...

    John Arrowwood <jarro...@gmail.com> Jan 24 12:45PM -0800 ^
     
    Do you have firebug installed? Or Safari? Or something which gives you a
    console? If so, before the autocomplete line, insert:
     
    console.log( $('#zip').val() );
     
    By the way, it was 'val' and more...

    Frank Becker <computersac...@beckerwelt.de> Jan 25 08:07AM +0100 ^
     
    Am 24.01.2010 21:45, schrieb John Arrowwood:
     
    > console.log( $('#zip').val() );
     
    Firebug shows:
    (An empty string)
     
     
    > By the way, it was 'val' and not 'value', I was working from memory, and 
more...

   Topic: This code is too complex for a noob, can someone break this down.
    Bugman1400 <trae.be...@coachmanridge.com> Jan 24 10:42AM -0800 ^
     
    To further understand the $.get() and its return data, I've simplified the
    code to this:
     
    a href="javascript:void(0);" onclick='$.get("dotest.php",{ cmd: "approve",
    id: "57" } ,function(data){ more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 05:23PM -0600 ^
     
    On Sun, Jan 24, 2010 at 12:42 PM, Bugman1400
    > ...
    > How come I get no response? Is there a further way to debug? I've heard 
that
    > Ajax errors may be silent unless you specify.
    more...

    Bugman1400 <trae.be...@coachmanridge.com> Jan 24 07:01PM -0800 ^
     
    Nathan Klatt-2 wrote:
    > concole. Change to the following and it works:
     
    > javascript:void(0); Approve 
     
    > Nathan
     
    That still did not work for me. What is the best way to check the JS more...

   Topic: Using variable in animate()'s properties
    kevin <kevinl...@gmail.com> Jan 24 04:10PM -0800 ^
     
    Hi, I'm writing this script and apparently the animate method wouldnt
    interpret the variable I pass in the properties section:
     
     
    //it's hover event, and this is the mouseover
    function () { more...

    brian <zijn.digi...@gmail.com> Jan 24 08:23PM -0500 ^
     
    You're repeating a bunch of code here. It'd be better to assign a
    variable for the img at the beginning of the function.
     
    function()
    {
    var img = $(this).find('img');

    var value = (direction more...

   Topic: XML object to JSON
    Shane <wishiwasmiss...@gmail.com> Jan 24 03:30PM -0800 ^
     
    Hello,
     
    I am trying to convert an XML object that I have to JSON so I can
    store it in the browsers cache for later retrieval -- using
    DOMCached. When I encode the object to JSON using the google more...

   Topic: loading osx (eric martin) to show errors
    infojava <infojava2...@gmail.com> Jan 24 06:22AM -0800 ^
     
    Hi,
     
    i use osx (of (eric martin)) to show error messages,
     
    i use a link (wich shows the demo) wich i should active if an error
    occures,
    but it doesn't work !!!
    more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 09:39AM -0600 ^
     
    > i use a link (wich shows the demo) wich i should active if an error
    > occures, but it doesn't work !!!
     
    Wrap it in a $().ready function?
     
    $().ready(function() { $("#osx").click(); });
    more...

    infojava <infojava2...@gmail.com> Jan 24 12:29PM -0800 ^
     
    Thanks but it does not work !!!
     
     
     
    more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 03:04PM -0600 ^
     
    > $().ready(function() { $("#osx").click(); });
     
    On Sun, Jan 24, 2010 at 2:29 PM, infojava <infojava2...@gmail.com> wrote:
    > Thanks but it does not work !!!
     
    Okay, well what's the #osx element more...

    infojava <infojava2...@gmail.com> Jan 24 02:05PM -0800 ^
     
    jQuery(function ($) {
    $("input.osx, a.osx").click(function (e) {
    e.preventDefault();
     
    $("#osx-modal-content").modal({
    overlayId: 'osx-overlay',
    containerId: 'osx-container', more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 04:41PM -0600 ^
     
    > when we click on the a.osx it calls this function !
    > but $("a.osx").click; doesn't work
     
    Sorry, dude - I'm at a loss. I assume the lack of parens after click
    (should be '$("a.osx").click();' more...

    infojava <infojava2...@gmail.com> Jan 24 02:46PM -0800 ^
     
    just go on http://www.ericmmartin.com/projects/simplemodal-demos/
    and download the very simple example : OSX Style Dialog
     
    and try it your self !
     
    more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 05:02PM -0600 ^
     
    Works great for me:
     
    http://jsbin.com/ahowi/edit
     
    Make sure you set up the click handler before you execute the click. :)
     
    Nathan
    more...

   Topic: jQuery now integrated into Visual WebGui web/cloud platform
    NCSM <chaba...@gmail.com> Jan 24 01:57PM -0800 ^
     
    Gizmox, the developer of Visual WebGui web/cloud applications platform
    announced the release of its Visual WebGui 6.4 beta 1 version, with
    expanded capabilities that include the integration of the more...

   Topic: VALIDATE - How to access message in highlight function?
    Temp <mike...@gmail.com> Jan 24 01:53PM -0800 ^
     
    I am using the highlight/unhighlight options of the validator to add a
    class to my invalid element, and I want to qtip the message. Can
    someone please tell me how to access the error message of the more...

   Topic: (validate) block event Return
    Vagner <vagner.monte...@gmail.com> Jan 24 01:11PM -0800 ^
     
    Hi,
    I'm trying to use the plugin Validator (from
    http://bassistance.de/jquery-plugins/jquery-plugin-validation/) WITH
    JSONSuggestBox (see: http://tomcoote.co.uk/jQueryJSONSuggestBox.aspx).
    more...

   Topic: JQuery Ajax serialize
    brian <zijn.digi...@gmail.com> Jan 24 01:41PM -0500 ^
     
    Use parse_str(). But beware that that string has a problem:
     
    <?php
    header('Content-type: text/plain');
    $str = 
'single=Single&multiple=Multiple&multiple=Multiple3&check=check2&radio=radio1';
    more...

   Topic: Are API docs in sync with latest jquery library
    Nathan Klatt <n8kl...@gmail.com> Jan 24 10:31AM -0600 ^
     
    > The data is loaded and the callback is invoked, but I'm not being
    > passed in the XmlHttpRequest object as expected. I've been looking at
    > the documentation here: more...

   Topic: iframe on another iframe
    "DOTS D.O.Technology Services" <dotsbulk...@gmail.com> Jan 24 06:35PM +0530 
^
     
    how i can put iframe on top of other iframe in html,
     
     
    i am trying to do is as follows
    there is a iframe of size 100px by 100px having src as web1.html
    and when i click a button outside the more...

    DOTS <dotsbulk...@gmail.com> Jan 24 05:35AM -0800 ^
     
    Any one ?
     
    On Jan 24, 6:05 pm, "DOTS D.O.Technology Services"
    more...

    Nathan Klatt <n8kl...@gmail.com> Jan 24 10:25AM -0600 ^
     
    On Sun, Jan 24, 2010 at 7:05 AM, DOTS D.O.Technology Services
    > how i can put iframe on top of other iframe in html,
     
    http://www.w3.org/TR/CSS21/visuren.html#absolute-positioning
    more...

   Topic: Abridged summary of jquery-en@googlegroups.com - 19 Messages in 12 
Topics
    "Mike Heath" <mshe...@btinternet.com> Jan 24 12:58PM ^
     
    Please unsubscribe me from this distribution.
     
    Mike Heath
    ----- Original Message ----- 
    From: jquery-en+nore...@googlegroups.com 
    To: Abridged Recipients 
    Sent: Sunday, January 24, 2010 more...

   Topic: Abridged summary of jquery-en@googlegroups.com - 19 Messages in 12 
Topics
    tra...@visages-trekking.com Jan 24 01:12PM +0100 ^
     
    Bonjour,
     
    je suis absent du 21 janvier au 8 février. 
     
    En cas d'urgence veuillez téléphoner à l'agence au 04.92.45.18.05.
     
    Merci et à bientôt !
     
    Thierry Raoux
    more...

Reply via email to