live

Jquery Live Function

Hi! I want to make this script to work as LIVE() function. Please help me! $(".img img").each(function() { $(this).cjObjectScaler({ destElem: $(this).parent(), method: "fit" }); }); the cjObjectScaler script (called in the html header) is this: (thanks for Doug Jones) (function ($) { jQuery.fn.imagesLoaded = funct...

Changing an attribute on certain future elements when they appear in jquery - it's possible?

I need a sort of "live" effect on some checkbox - i need that every checkbox since now will be checked by a jquery function attr("checked", true) when they appear. Is it possible to do? ...

jQuery - Can't seem to .live() bind to a label element. Why?

Here's my code: HTML: <ul id="more-items"> <li><label class="button">hi</label></li> <li><label class="button">hi</label></li> <li><label class="button">hi</label></li> </ul> Javascript: $('ul#more-items label.button').live('click', function() { alert(1); }); Clicking on the labels doesn't cause the alert() to fire. Th...

Live connection between server and client in a web page

How do I implement a real time updating /live html streaming method in applications like FriendFeed, Stackoverflow, Blip.fm ? Is it done using a jQuery/Ajax request from client to server every X seconds? (FriendFeed is like every 1 second) or there is another technique? ...

writing data onto a linux live-dvd

Hi All, I have a server machine with a dvd-writer. I want to burn a linux live-dvd (openSUSE is preferred) with a pre-configured web server, so that after booting the web server should be ready to serve. The web server has a sqlite database (with very less data). But after rebooting the system, all data in the database will get lost. I...

Android Live Wallpaper touch events

Hi, I've just started with Android, I'm making a simple Live wallpaper. I'm testing it on a 2.1 emulator. The trouble is while it works in the preview screen before you choose "Set Wallpaper" the touch events don't appear to register on the screen once you've selected it as a wallpaper. Do I need to state anything in the manifest about ...

Using openssl encryption for Apple's HTTP Live Streaming

Has anyone had any luck getting encrypted streaming to work with Apple's HTTP Live Streaming using openssl? It seems I'm almost there but my video doesn't play but I don't get any errors in Safari either (like "Video is unplayable" or "You don't have permission to play this video" when I got the key wrong). #bash script: keyFile="key.t...

jquery ui dialog - live not working?

I'm using this dialog: http://docs.jquery.com/UI/Dialog To open dialog I do it this way: $('a.openModal').live("click", function() { var idArr = $(this).attr('id').split("OpenNote"); var id = idArr[1]; alert($(".modalNote#dialog-modal" + id).html()); $(".modalNote#dialog-modal" + id).dialog('open'); ...

jQuery live draggable / live droppable?

Hi all, Basically there are two tables: Companies and visitors. Currently it's possible to drag visitors to companies. Works great. As soon as the drop function occurs, there are two $.post's. The first one saves the drag to the database. The second one updates the visitors, because the information constantly changes. The problem, howev...

which jquery plugin can do the dynamic smooth vertical menu scroll?

ok i'm new to jquery, but how can i do a feed like the one at twitter.com where they have the "top tweets" update with the latest tweet by scrolling the whole menu down just enough space to allow the new item to fade into the top spot? easy to do? do i need a plugin? i looked around and what i don't want is just a carousal type plugin...

how to use time out in mplayer?

I am trying to save audio using mplayer from a live http stream. saving audio is successful. If there is no live stream playing it does not exit automatically. Is there any way to set timeout if there is no live stream? code : mplayer -i url -t 00:00:10 -acodec libmp3lame -ab 24 -ar 8000 audio.mp3 Thanks in advance. ...

Live Mesh has screwed up my file permissions

I got the bright idea of using Live Mesh to sync up my development directories between my laptop and desktop machines. It appears that the permission on any new files that are added through Live Mesh do not inherit permissions from the parent directory. Now I cannot overwrite the permissions on those files. I keep getting an "Access i...

live audio streaming format

Hello, What are the possible formats of Live audio streaming in iPhone? Thank you, ...

Does anyone have an example of how to stream the camera to a server on android?

I find plenty of examples of downstreaming a video from a server to an android, but I actually want to stream live images from my droid to a server. ...

live broadcasting video?

Hello everyone, I am using VSTS 2008 + .Net 3.5 + C# + Silverlight 3.0 + Microsoft Expression 3 + ASP.Net + IIS 7.0. I want to show my desktop lively to other users. In more details, suppose a case when a teacher is showing Demo or ppt on her/his desktop, the information on desktop could be broadcasted lively so that other users could s...

jQuery $.live() doesn't work with table rows on the iPhone

Hello. I'm making table rows click-able with jQuery's $.live() function. Works perfectly on Chrome, Firefox and even desktop Windows Safari -- but not on the iPhone. $.bind() works everywhere, but for obvious reasons I'd like to use the other function. Does anyone have any idea why it doesn't work and how can I fix it? Example code belo...

jQuery live right click

How can i use the jQuery live function as a right click listener? I've used this plugin: http://abeautifulsite.net/2008/05/jquery-right-click-plugin for right click event listening. But it isn't live, which is a problem for me. Hope you can help (btw. sorry for my bad english) Thanks in advance ...

Drupal Chat Room Module live updating problem.

Okay so I have managed to install Drupal's Chat Room Module and also got it to working fine. By fine, I mean i can post messages in the chatroom, i can create chatroom, and invite people as well. However, let's say User A posts a message in the chatroom where Users B and C are also present, the two latter users (B and C) cannot see the m...

Live HTTP for CURL

I have series of curl commands that I want to translate into straight up HTTP requests. I would like to use some live http utility that would record http requests made while I make the curl commands. And from this, I will translate the curl commands to their corresponding http requests. Any recommendations? ...

Can XNA Game Studio be used to distribute games in multiple regions such as Australia and US?

I imagined that publishing a game to xbox live would make it available all around the world. It seems that this is not the case because there are far more titles available on xbox live in the USA (around 2000) than in xbox live Australia (around 700). Before I commit to using XNA Game Studio, I would like to know the details of publishi...