[jQuery] New Services

2010-02-22 Thread DOTS D.O.Technology Services
Looking for Virtual Office, TeleMarketing , Mobile Marketing, WebHosting and Web Designing sloutions ? We are here to provide all such solutions at very low price and best quality. To know about telemarketing promotion fpr your business SMS telepromo to 9220092200 To know more about sms marketin

Re: [jQuery] FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-22 Thread brian
SPECTACULAR NEWS! So, um ... don't keep us in suspense. On Sun, Feb 21, 2010 at 2:45 PM, Erik wrote: > For months I couldn't figure this out and I found the answer > > dd_roundies can now work with IE8!!! > > Erik >

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread Nathan Klatt
On Mon, Feb 22, 2010 at 11:10 AM, rafald wrote: > ok...I see on you page it works...I double checked my code. > ... > but the problem is I need accordion as well. If you update the jsbin page to how you think it should be (i.e., add the accordion) I'd be happy to look into what's wrong. :) Go to

[jQuery] Re: Can I use external domain with jQuery media plugin ?

2010-02-22 Thread Mike Alsup
> it is about jQuery media plugin (http://malsup.com/jquery/media/ > misc.html) > > Can I use > >   http://www.google.co.in";> > > This to load EXTERNAL DOMAIN html page in an iframe that media plugin > I create. Yes, this should work. The media plugin just creates an iframe for this content.

[jQuery] Malsup Form: problem with upload of big files

2010-02-22 Thread Mj
Here I have a test page: http://wmviking.ru/test/1.html There is no problem to upload small files, but if I choose larger (for example, 2MB) - upload crashes without normal execution. I put simple and ajax upload on example to check that in one case it works normally, and in another - crashes! Wh

[jQuery] jQuery Dialogbox Problem

2010-02-22 Thread patelneha...@gmail.com
Hello Everyone, I am new to jquery so i dont know much about it. I write a script in which i am using the jquery's Dialog box UI on my form. The form is about user search any product on our site and if the user in not logged in then displaying him login dialog box otherwise showing dialog box t

[jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread rafald
ok...I see on you page it works...I double checked my code. Here what happens WHEN I replace THIS: $(function(){ $("#elements").sortable(); $("#elements").disableSelection(); }); $(function() { $("#accordion").accordion(); }); $(document).ready(function(){ $('#elements').sortable({ update: func

[jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread rafald
On 22 Lut, 03:43, Nathan Klatt wrote: > Hi Rafal, > > In what way does it not work? I transcribed your code into jsbin and > it seems to be fine, though I don't have any roundbox styling being > applied: > > http://jsbin.com/oququ3/edit > > Nathan Hi I am not surpised you don't get it rounded ;-

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
:-) thanks a lot. I've tried your script: http://www.deboramontoli.it/prova/mediacenter_prova3.shtml Now, when I choose a tab, each scroll is independent and keeps the correct moment. It hasn't stopped yet, but it's better than the last page. Uff, I'm going ahead, it's an hard work. Thanks aga

[jQuery] UI Slider with group with shared limit

2010-02-22 Thread Sir Rawlins
Hello Guys, I'm new to the UI library and looking for some help achieving a certain thing. I want to have a group of sliders which have a shared value which they can reach as a maximum. Here's a visual example of what I'm looking to do: http://tinypic.com/view.php?pic=9ibp05&s=6 Notice how we ha

Re: re[jQuery] fresh tabs

2010-02-22 Thread Nathan Klatt
On Mon, Feb 22, 2010 at 2:20 AM, whynotter wrote: > http://www.deboramontoli.it/prova/mediacenter_prova2.shtml page 2 Check this out: http://jsbin.com/ixiyo/3/edit You will need to do some more data localization (I've done it for currentPosition but left totalVideos and maxMove) but I think it

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread tooone777
Ohh ok cool! Thank you Jonathan. I understand it better now :) -- View this message in context: http://old.nabble.com/tooone7-Can%27t-understand-this...-Want-to-make-a-image-appear-on-active-link-tp27686495s27240p27687083.html Sent from the jQuery General Discussion mailing list archive at Nabb

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T & T nv)
$('selector')[index] returns the actual DOM element, while $('selector').eq(i) returns a jquery object (you can see a jquery object as some sort of a shell around the actual DOM node that the jquery functions work on). You can only use the jquery .css() function on jquery objects, and not dir

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread tooone777
Jonathan Vanherpe (T & T NV) wrote: > > tooone777 wrote: >> $("ul#nav_prim a")[i]... > > you need to use > > $("ul#nav_prim a").eq(i)... > or > $("ul#nav_prim a:eq("+i+")")... > > Jonathan > -- > Jonathan Vanherpe - Tallieu & Tallieu nv - jonat...@tnt.be > > I changed my code to the way

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T & T nv)
tooone777 wrote: $("ul#nav_prim a")[i]... you need to use $("ul#nav_prim a").eq(i)... or $("ul#nav_prim a:eq("+i+")")... Jonathan -- Jonathan Vanherpe - Tallieu & Tallieu nv - jonat...@tnt.be

[jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread tooone777
Hi everyone! I started using jQuery yesterday so im a noob. I have a navigation bar, and i want it to display a background image on the active menu item. (Like the top most menu on this website, it has a little blue underline) So i got this function: Copy code 1. function displayBgImg() {

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
Thanks for your replay but the problem is still happening :-( I've just tried this plugin and the tabs work well, but the scroll images have the same error. I don't know how to do. Thanks again stworthy wrote: > > Using http://jquery-easyui.wikidot.com jquery-easyui tabs plugin, the > tabs

Re: re[jQuery] fresh tabs

2010-02-22 Thread stworthy
Using http://jquery-easyui.wikidot.com jquery-easyui tabs plugin, the tabs panel will refresh automatically. Example: First Tab Second Tab Third Tab Output: http://old.nabble.com/file/p27685351/tabs.png whynotter wrote: > > Hi, > I ha

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
Hi Nathan, here two pages: http://www.deboramontoli.it/prova/mediacenter_prova1.shtml page 1 http://www.deboramontoli.it/prova/mediacenter_prova2.shtml page 2 The first one is without tabs and the script is correct, while in the second one there are two tabs and the script crashes. Have you a