[jQuery] Re: $(form).serialize() does not include submit button data

2010-01-04 Thread Milan Andric
Makes sense, that's also a simple workaround.  Thanks.

--
Milan


[jQuery] $(form).serialize() does not include submit button data

2010-01-03 Thread Milan Andric
I was wondering if this is a bug or not ...  here's the full example:
http://andric.us/media/tmp/jquery-form.html

I would think the submit button data would also be included when doing
$(form_obj).serialize()?  Apologies if this has already been answered
somewhere already.  It can easily be remedied by including some extra
hidden fields but I thought I would ask about it.

The code looks something like:


[jQuery] grid-based page editor

2009-05-04 Thread Milan Andric

Hello,

I’m looking for a javascript grid-based page editor, for lack of a
better term. Some javascript code that takes a set of vanilla html div
blocks and allows you to order them, move them, expand contract and
maintains the grid system in a fixed width interface, like 12 column
960. The javascript generates the right grid code and you can save it
or do an XMLHTTPRequest post to save it. Any ideas or have you seen
something like this?

This grid idea is kind of a nicety, really any javascript that allows
you to layout a block on a fixed width page would be great.  Please
let me know if you have run into some code that does this.

Thanks,

Milan
django-newsroom



[jQuery] Re: where to load init function with google?

2009-03-18 Thread Milan Andric

So all of the javascript code should go at the end of the html doc,
right before closing  tag? I thought it should go in the
header.

Sorry for the ignorance,

--
Milan

On Mar 17, 8:22 pm, mkmanning  wrote:
> You don't need the callback, but you can call it with:
> google.setOnLoadCallback(init);
>
> The domready wrapper is still a good idea though, depending upon where
> your scripts are--at the close of the body we hope :)
>
> On Mar 17, 2:52 pm, Milan Andric  wrote:
>
> > Hello, I was just adding a dropdown menu to my site using droppy.
>
> >http://plugins.jquery.com/project/droppy
>
> > And I also use google jdev with google.load('jquery',...).
>
> > Droppy requires a bit of code to initialize the dropdown:
>
> >         $(document).ready(function() {
> >           $('#nav').droppy();
> >         });
>
> > Now where should that code go when I'm using google.load() ... this is
> > the solution I came up with:
>
> > ...
> >     
> >         google.load("jquery", "1.3.1");
> >     
> >     </
> > script>
> >     <script language="Javascript" type="text/javascript">
> >         $(document).ready(function() {
> >           $('#nav').droppy();
> >         });
> >     
> > ...
>
> > Is this perfectly normal?  Seems like since I'm doing google.load() I
> > should have a callback or something.
>
> > Just wondering ... thanks!
>
> > --
> > Milan
>
>


[jQuery] where to load init function with google?

2009-03-17 Thread Milan Andric

Hello, I was just adding a dropdown menu to my site using droppy.

http://plugins.jquery.com/project/droppy

And I also use google jdev with google.load('jquery',...).

Droppy requires a bit of code to initialize the dropdown:

$(document).ready(function() {
  $('#nav').droppy();
});

Now where should that code go when I'm using google.load() ... this is
the solution I came up with:

...

google.load("jquery", "1.3.1");



$(document).ready(function() {
  $('#nav').droppy();
});

...

Is this perfectly normal?  Seems like since I'm doing google.load() I
should have a callback or something.

Just wondering ... thanks!

--
Milan


[jQuery] Re: jquery for slideshows

2008-11-22 Thread Milan Andric

Thanks Sia,

Do you have any recommendation on how to handle audio with
javascript?  Let's say I also want to play an audio/mp3 file along
with the slideshow ...

--
Milan

On Nov 21, 8:50 pm, "Sai Krishna" <[EMAIL PROTECTED]> wrote:
> I found this through stumble. Thanks to Jquery. It reduces flash 
> costhttp://www.gruppo4.com/~tobia/cross-slide.shtml<https://lan.solugenix.net/exchweb/bin/redir.asp?URL=http://www.gruppo...>
> Sai Krishna
>
> On Sat, Nov 22, 2008 at 6:57 AM, Milan Andric <[EMAIL PROTECTED]> wrote:
>
> > Hello,
>
> > I am working on a project where one component is a slideshow
> > application with audio. I'm wondering if I can use jquery/javascript
> > for this.  If anyone has any links to examples or ideas of ways to
> > deal with a series of images and audio file that synchronizes with the
> > images in javascript, it would be greatly appreciated.  A first step
> > would be a jquery library that supports a configurable slideshow with
> > audio.
>
> > Eventually I would like to build something similar to the slideshare
> > sync tool, which allows you to synchronize audio with images.  This
> > version is done in flash. I'm wondering if javascript could accomplish
> > the same things.
> >http://www.flickr.com/photos/johntynan/3032282040/
> >http://www.slideshare.net/faqs/slidecast#1g
>
> > Thanks for you help,
>
> > Milan Andric
> >http://m.andric.us/


[jQuery] jquery for slideshows

2008-11-21 Thread Milan Andric

Hello,

I am working on a project where one component is a slideshow
application with audio. I'm wondering if I can use jquery/javascript
for this.  If anyone has any links to examples or ideas of ways to
deal with a series of images and audio file that synchronizes with the
images in javascript, it would be greatly appreciated.  A first step
would be a jquery library that supports a configurable slideshow with
audio.

Eventually I would like to build something similar to the slideshare
sync tool, which allows you to synchronize audio with images.  This
version is done in flash. I'm wondering if javascript could accomplish
the same things.
http://www.flickr.com/photos/johntynan/3032282040/
http://www.slideshare.net/faqs/slidecast#1g

Thanks for you help,

Milan Andric
http://m.andric.us/