[jQuery] update several divs within a .each() loop

2009-07-22 Thread Daniel
g div ( .html (response) ). All the other browsers are not updating the contents of the divs until all the responses are available (although i execute the request with async=false), and then they update all the divs (ids dev_1 to dev_7) at the same time... but for me it would be necessary that the other browsers behave like Firefox 3. Does anyone have an idea? I would really appreciate it :-) Thanks! Daniel

[jQuery] Re: update several divs within a .each() loop

2009-07-22 Thread Daniel
notice: if i do an alert() with the response just before i update the content of the div, everything works fine... On Jul 22, 1:58 pm, Daniel wrote: > Hi everybody! > > I want to update the contents of several divs periodically with the > response i get from a php-script. the numbe

[jQuery] circular autoscrolling

2009-09-01 Thread Daniel
Is it possible in jCarousel to have circular autoscrolling? I tried setting the circular scrolling example to autoscroll and it wouldn't work. However, when I took all the content out of the container it worked somehow. Is this a bug? The only thing I changed in the example was: jQuery(document).

[jQuery] Accessing Elements after adding them with Append

2009-09-02 Thread Daniel
Hi There, I'm having trouble accessing some Elements with jQuery after I created them and added them to the HTML. I want to add some Checkboxes to my Site as soon as the user clicks another Checkbox. That works just fine. But if the user clicks on one of these added checkboxes, i want an event to

[jQuery] Re: Accessing Elements after adding them with Append

2009-09-03 Thread Daniel
Hi mkmanning, works like a charm, thanks a lot! :) Daniel On 2 Sep., 18:00, mkmanning wrote: > Use .live() > > http://docs.jquery.com/Events/live#typefn > > On Sep 2, 1:51 am, Daniel wrote: > > > > > Hi There, > > > I'm having trouble accessi

[jQuery] Re: Get background-image url ?

2009-04-24 Thread Daniel
$$.css('background-image').replace(/^url|[\(\)]/g, ''); should do the trick. On Apr 24, 6:34 am, Mech7 wrote: > What is the best way to get the background image url in css? > i have found this in crossfade plugin but does not work in opera.. > > var target = $$.css('backgroundImage').replace(/^

[jQuery] Re: performance of jQuery.each

2009-04-24 Thread Daniel
for loop might be the best way to go. If you are trying to iterate through an array of unknown objects/ items, the each function is your way to go. -Daniel On Apr 24, 3:24 am, "Magnus O." wrote: > Hi! > > I saw that the jQuery.each function iterates over the array like this: >

[jQuery] Re: basic image gallery, running into a few problems

2009-04-24 Thread Daniel
A simple solution would be: function forwardClick() { var i = $('#images .visible').attr('id'); var currentImg = $('#images .foo:eq(' + i + ')'); var nextImg = $('#images .foo:eq(' + j + ')'); var curr

[jQuery] AutoComplete Plugin + Json not work in IE!

2009-06-19 Thread DaNieL
Hy guys, im new in jQuery ;) My problem is the autocomplete plugin: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ It works very well and i'll find it much usefull, but i got a problem with it.. Using the remote procedure (ajax requests), if the returning value from the script i

[jQuery] AutoComplete Plugin + Json not work in IE!

2009-06-19 Thread DaNieL
Hy guys, im new in jQuery ;) My problem is the autocomplete plugin: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ It works very well and i'll find it much usefull, but i got a problem with it.. Using the remote procedure (ajax requests), if the returning value from the script i

[jQuery] jQuery ajaxSubmit(), how to send the form in a json format?

2009-07-02 Thread DaNieL
Hi guys, i just leanerd the existence of the ajaxSubmit jQuery plugin, im wondering if there is a way to use the JSON both to send and retrieve the requests. I mean, no the plugin have the option 'dataType', that is used to specify the format that the server will send back, but i need to send the

[jQuery] Is it possible to change the URL of a jQuery tab?

2009-07-09 Thread Daniel
So far I have tried: $('a.classname').attr('href','/some_page') and $('#li_id').html('Details') Thanks in advance.

[jQuery] LavaLamp Plugin-Superfish Intergration

2009-12-22 Thread Daniel
Hi, I am extremely new to jQuery and and wondered if someone might be able to point me in the right direction. I want to add the LavaLamp plugin to the Superfish menu module created for Joomla. It is located here: http://users.tpg.com.au/j_birch/plugins/superfish/ The documentation on this site s

[jQuery] Re: Update div works in IE but not in FF?

2008-11-18 Thread Daniel
cant give you any example. I suggest you to use the BlockUI plugin , so instead of just display the Loading div , it blocks your interaction with the page until the content is fully loaded. You can find it here http://malsup.com/jquery/block/ Daniel. On Nov 18, 6:23 am, "[EMAIL PROTECTED

[jQuery] Re: Validate. Can I validate using 2 values?

2008-11-18 Thread Daniel
For my case , I get the user value from the field and add it as a parameter into the remote's url . Sth like this : / checkpass&user=userid Daniel. On Nov 17, 5:07 am, shapper <[EMAIL PROTECTED]> wrote: > In this case I have only the validate request for the password field >

[jQuery] Re: Ajax call with a Form button

2008-11-18 Thread Daniel
Did you try to use the submit event ? For example: Javascript: $(document).ready(function(){ $('#formLoad').submit(function(){ $('#south').html("Loading ...").load("test.html"); return false; }); }); HTML: Load content into this div O

[jQuery] Re: Executing Dynamic Javascript

2008-11-18 Thread Daniel
You can try jQuery.getScript(url, callback) http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback On Nov 19, 4:25 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have an issue that I initially thought was a jQuery problem, but > after simplifying things in preparation for posting my q

[jQuery] not a standard .attr task - needs a filter

2008-11-18 Thread daniel
Maybe it's the really late night I had but I can't figure this one out. First the html: Internal Link http://external.com";>External Link Internal Link2 in order to do something on the page instead of going to the link I need to filter it based on if it cont

[jQuery] Re: not a standard .attr task - needs a filter

2008-11-18 Thread daniel
Thanks for replying - as it turned out, in trying to go with what was suggested I realised I was doing it all wrong! It's my fault for not including the whole snippet I was working with (was trying to snip so I didn't confuse the issue) and I would have normally worked it out if it wasn't for the

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
name=q]').val(i); $('#south').load("select.php?q="+$("input[name=q]").val()); }); }); html: Load content into this div Daniel. On Nov 19, 5:53 am, anny <[EMAIL PROTECTED]> wrote: > Hi , > > I tried ajaxsu

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
quot; + responseText); } ); }); }); Daniel. On Nov 20, 4:10 am, anny <[EMAIL PROTECTED]> wrote: > Daniel, > > Thank you for the reponse. > > I tried this , but does not work. Firfox hangs at everyTime > (1000,.  Do i need to unclude any jquery files? > right

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
I have just checked your new solution with setTimeout. It should produce similar result if you change the ajaxForm to ajaxSubmit. Daniel. On Nov 20, 4:10 am, anny <[EMAIL PROTECTED]> wrote: > Daniel, > > Thank you for the reponse. > > I tried this , but does not work. Firf

[jQuery] Re: can you perhaps tell why this page doesnt show in firefox?

2008-11-22 Thread Daniel
my firefox display it normally. Can you indicate which part is not displayed correctly in firefox ? Daniel. On Nov 22, 5:46 am, Rene Veerman <[EMAIL PROTECTED]> wrote: > This page displays fine in IE, opera and safari. > But not in firefox :( > > http://tevlar.net/mytev

[jQuery] Re: Simple Validate if empty

2008-11-22 Thread Daniel
if($('#term').val() == ""){ alert("empty"); //do something }else{ alert($('#term').val()); //do something } On Nov 22, 3:32 am, coughlinsmyalias <[EMAIL PROTECTED]> wrote: > Hey, > > I have been trying to look for a simple way to validate one field, if > its empty then do X, how would I c

[jQuery] Re: jQuery date picker - how to disable all Sunday

2008-11-23 Thread Daniel
Hi plee, to disable all Sunday: javascript: $('#noSunday').datepicker({ beforeShowDay: noSunday, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true }); function noSunday(date){ var day = date.getDay();

[jQuery] Re: adding different class for only 1 error element?

2008-11-23 Thread Daniel
dTo(element.parent()); // this line will change depends on your form layout }else{ error.appendTo(element.parent()); // this line will change depends on your form layout } } Daniel. On Nov 24, 12:40 am, Cronet <[EMAIL PROTECTED]>

[jQuery] Re: why is the "click" event different in elements?

2008-11-23 Thread Daniel
Tested your code. It worked in both Firefox 3 and IE7. On Nov 23, 8:10 pm, Lorenzo Gil Sanchez <[EMAIL PROTECTED]> wrote: > Imagine this code: > > $("a").click(function () { alert("hello world"); return false; }); > > $("button").click(function () { $("a").click(); }); > > I would expect that cli

[jQuery] jqmodal and ui datepicker problem

2008-11-25 Thread Daniel
buttonImage:cal.gif', buttonImageOnly: true })); }); Daniel

[jQuery] Re: .ajaxSend fires six times

2008-12-27 Thread Daniel
should be $(document).ajaxSend(function(){...}) Cheers, Daniel. On Dec 28, 3:14 am, "Lay András" wrote: > Hello! > > On Sat, Dec 27, 2008 at 8:27 PM, Michael Geary wrote: > > Well, that's odd that it didn't work. Try a single element by ID then:

[jQuery] Re: ajaxStart don't work for ajax/load?

2008-12-29 Thread Daniel
I dont think there is a problem with your javascript code. Did you try to set #load initial style to display:none ? Cheers, Daniel On Dec 29, 5:33 pm, hcvitto wrote: > come on..give me a christmas present  ;) > > On 23 Dic, 09:51, hcvitto wrote: > > > i'm still here :) ...?

[jQuery] Re: corner plugin ie7 bug

2008-12-29 Thread Daniel
The page isnt loading correctly for me On Dec 29, 4:44 pm, hcvitto wrote: > http://www.tasker.it/img/demo/ > > hi > sorry for the long delay..i moved everything here > > http://www.tasker.it/img/demo/ > > would you check now whether you can see it? > > On 23 Dic, 16:58, Mike Alsup wrote: > > >

[jQuery] Re: ajaxStart don't work for ajax/load?

2008-12-29 Thread Daniel
yes it should. Do you have a test page ? Cheers, Daniel On Dec 29, 8:47 pm, hcvitto wrote: > hi daniel > thanks for the replay.. > yes, it's initial state is hidden..As far as you know, should the > ajaxStart/ajaxStop functions work with the "load" function too? &

[jQuery] Select a line inside a tag

2009-01-01 Thread Daniel
Hi, i'm working on some bookmarklets / greasemonke scripts to change some functionality in some websites. i got some code like this line 1 - aa line 2 - bb line 3 - cc and i need to select all lines that contains "aa" and "cc" does anybody have an idea how to do this?

[jQuery] Re: Hide / show password field with focus

2009-01-06 Thread Daniel
When you click outside the password field, the field is still not Therefore, default value is '' , not a quick fix to your code ( not tested ) $('.login_input').blur(function(){ if(this.value === '' && this.name === 'pass'){ $('.header_login_right_fake

[jQuery] Re: Jquery coding direction

2009-01-06 Thread Daniel
What kind of validation are you using ? Are you using jquery Form plugin ? On Jan 7, 3:03 am, tawright915 wrote: > I did not make my question clear and left out some things so here is > goes again. > > I have two textboxes on my web form.  When blank they are both > required and are validated up

[jQuery] Re: Jquery coding direction

2009-01-06 Thread Daniel
Sry , I mean Validation plugin On Jan 7, 3:40 am, Daniel wrote: > What kind of validation are you using ? Are you using jquery Form > plugin ? > > On Jan 7, 3:03 am, tawright915 wrote: > > > I did not make my question clear and left out some things so here is > > g

[jQuery] Re: jQuery 1.3 incompatible plugins

2009-02-06 Thread Daniel
Hi, quick fix for compatibility with jQuery 1.3 1. Open jquery.fancybox.js file 2. Replace line 73: Before: var arr = $("a...@rel=" + el.rel + "]").get(); After: var arr = $("a[rel=" + el.rel + "]").get(); Bye. On 22 Led, 16:13, Gordon wrote: > Sorry for the double posting! Google groups see

[jQuery] Re: Select Box. Anyone?

2009-02-18 Thread Daniel
What exactly is it that you are looking for as far as a replacement? JQuery works great with the box. If you are looking for something visually different, more so than CSS can take care of, you can check out this one: http://www.brainfault.com/demo/selectbox/, if there is something more you are l

[jQuery] Jquery Form Plugin issues

2009-02-18 Thread Daniel
I'm going nuts here, and I think i've been staring at this far too long. I have done more than one of these in my day, but for some reason this just isn't working. I'm hoping a fresh set of genius eyes can help me out here. Everything has been checked for validation and so on. Doesn't work in IE

[jQuery] Re: New plugin: simplyScroll

2009-02-18 Thread Daniel
Wonderful! I plan to use this on the redesign of hodgesfarmequipment.com! Thank you, bookmarked! On Feb 18, 2:41 pm, Will Kelly wrote: > Hi > > Just released a plugin for some code I've been working on and off for > the past few months. > > It's a simple content scroller that can accept images a

[jQuery] Re: Jquery Form Plugin issues

2009-02-18 Thread Daniel
It is posting, but its not ajax posting. I've tried with and without other inputs, and it still submits like a normal form. I'm losing my mind over this one! Thanks for the quick response, Mike. Love the plugin, and have used it more than once! On Feb 18, 5:26 pm, Mike Alsup wrote: > > Everythin

[jQuery] Re: New plugin: simplyScroll

2009-02-20 Thread Daniel
om.html > > On Feb 19, 1:13 am, Will Kelly wrote: > > > Great stuff, let me know how it goes! Will > > > On Feb 18, 11:06 pm, Daniel wrote: > > > > Wonderful! I plan to use this on the redesign of > > > hodgesfarmequipment.com! Thank you, bo

[jQuery] jQuery multiple toggle - should be quick

2009-04-13 Thread Daniel
I have multiple divs called article which have a show/hide link to toggle a div inside called articleBody. Problem is when I click the link all divs show/hide. The html structure is below: Hide [-]

[jQuery] Re: Bug? Jquery 1.3.2 -> $.ajax + Firefor 3.0.8

2009-04-22 Thread Daniel
This may be silly, but I notice you put "dataTipe" instead of "dataType". If this is what your code looks like also, then there is your problem right there... On Apr 22, 4:56 am, Mario Soto wrote: > The $.ajax function is causing me trouble, I'm using Mozilla Firefox > 3.0.8 in a Kubuntu 8.10 c

[jQuery] Re: select only the father

2009-04-22 Thread Daniel
try this... $(".delete").hover(function(){ $(this).parent().css('background- color','red'); }, function() { $(this).parent().css('background- color','white'); }); On Apr 22, 6:25 am, gostbuster wrote

[jQuery] Re: Removing anonymous element

2009-04-22 Thread Daniel
var.parent().remove() should do the trick i think? On Apr 22, 5:47 am, dth wrote: > Hi, > > I have a jquery array with an element in it. I'd like to remove this > element from the DOM, but can't see how. > > If I use var.remove() it removes all children but not the element > itself. > > I cannot

[jQuery] Re: tow live event imbriqued

2009-04-22 Thread Daniel
I can't tell 100% from looking at the code... but it seems like you don't need to have that code inside the "if" statement. putting the: $('.exploitation_seat span.addIfEmpty').live('click', function(){ elementInQuestionParent.append(contentToInsert) ; }) code anywhere in the $(document)

[jQuery] Re: Removing anonymous element

2009-04-22 Thread Daniel
move my element as well as all of > it's siblings? > > -dennis > > On 22 Apr., 13:36, Daniel wrote: > > > var.parent().remove() should do the trick i think?

[jQuery] Re: select only the father

2009-04-22 Thread Daniel
I'm very glad! On Apr 22, 6:38 am, gostbuster wrote: > Thank you very much! it works ! > > thanks a lot ! > > On 22 avr, 13:31, Daniel wrote: > > > try this... > > >                 $(".delete").hover(function(){ > >                    

[jQuery] Re: Removing anonymous element

2009-04-22 Thread Daniel
Wait. I'm sorry... the second half of my response was for a different post relating to parent and parents. I have not tested that in the wild. It should, however, not remove the siblings for the same reason. On Apr 22, 6:45 am, Daniel wrote: > It shouldn't. there is parent() and p

[jQuery] IE7 Thrown Invalid Argument Bug resurfaced

2009-04-22 Thread Daniel
I know this area of code was recently fixed for IE8 issues, but something else is going wacky. line 1065 and 1002 elem[ name ] = value; change this to try{elem[ name ] = value;} catch (err){}; and you're avoid errors being thrown in IE7 when a property is send an invalid number.

[jQuery] Re: How to catch mouse position inside an area?

2009-04-22 Thread Daniel
something like... $("#div").click(function() { var ox = $(this).offset().left; var oy = $(this).offset().top; } On Apr 22, 6:36 am, "David .Wu" wrote: > If I got a 400px width div, can I get the offset left distance from > mouse to the div in where I click?

[jQuery] Re: Bug? Jquery 1.3.2 -> $.ajax + Firefor 3.0.8

2009-04-22 Thread Daniel
t's returned as-is. > > > It would be a good idea to open the URL providing this data in your > > browser and examine the data, perhaps pasting it intohttp://jsonlint.com > > to see if it's valid or not. > > > On Apr 22, 7:28 am, Daniel wrote: > > > >

[jQuery] tablesorter plugin

2009-04-23 Thread Daniel
I am working with tablesorter plugin and pager plugin. I have written code that looks for a class and decides whether or not to display the row based on which checkboxes are selected. Example: if i select the checkbox vehicles, the category id is 4, so jquery looks in the table for any rows with

[jQuery] jQuery Show/Hide validation problem

2008-11-05 Thread Daniel
I am using jQuery show/hide functions on click, so when you click on the contact link it hides that div and then shows a contact form. Once you fill in the contact form and click submit it shows the thanks page div. I am using validation from here: http://bassistance.de/jquery-plugins/jquery-plu

[jQuery] jQuery Validate and Show/Hide problems

2008-11-05 Thread Daniel
I am using jQuery show/hide functions on click, so when you click on the contact link it hides that div and then shows a contact form. Once you fill in the contact form and click submit it shows the thanks page div. I am using validation from here: http://bassistance.de/jquery-plugins/jquery-plu

[jQuery] Re: when an AJAX API documentation!!

2008-02-25 Thread daniel
This is unfair, extJS IS NOT open source, pelase just read licence carefully. http://extjs.com/license anyway try this http://jquery.bassistance.de/api-browser/ good luck. On Feb 22, 9:10 am, oscarml <[EMAIL PROTECTED]> wrote: > HI, do you know if it planned to develop an API documentation pure

[jQuery] [treeview]

2008-06-12 Thread Daniel
Hi I've got some troubles with treeview: http://reunion-industrial.es/reiphp/productos.php First time it loads it Works perfectly, but when I click on one subsubsubfamily and the page reloads, it seems the treeview loads all the ítems at the same time. That is visible only a few ms but it makes

[jQuery] jCarousel - Assigning a current class to external controls

2008-07-04 Thread Daniel
Hi Jan I have an example page set up at http://dsagency.eledesign.com/. I am using two different controls to run the carousel. 1. The List of Articles above the carousel. 2. The next and previous buttons. I would like to be able to set a class of current to the list of articles so that no matte

[jQuery] Re: jquery.flickr + reflection

2007-08-03 Thread Daniel MacDonald
addClass('reflect') is definitely running before the images are loading - the hazards of living in an AJAX world. setTimeout is a step in the right direction, but you really want to add you reflections after the response. There are a couple of options: the flickr plugin can accept a callback: set

[jQuery] Re: jquery.flickr + reflection

2007-08-03 Thread Daniel MacDonald
try #gallery ul {list-style:none;} #gallery li {display:inline;padding:2px;} in your css. On Aug 3, 9:21 am, b0bd0gz <[EMAIL PROTECTED]> wrote: > Awesome that did the trick, the reflection is applied every time now > :jumping:. Still having no luck in getting the thumbnails to display inline >

[jQuery] Re: jquery.flickr + reflection

2007-08-05 Thread Daniel MacDonald
ul#flickr {list-style:none;} ul#flickr li {display:block;float:left;} On Aug 4, 12:25 pm, b0bd0gz <[EMAIL PROTECTED]> wrote: > Tried your suggestion but still no luck I'm afraid, it's still displaying one > under the other :( > > -- > View this message in > context:http://www.nabble.com/jquery.f

[jQuery] JQBrowser alternative

2007-08-29 Thread Daniel Rossi
Hi, I was wondering if there happens to be an alternative to the JQBrowser plugin, it does what I want which is platform detection, not just browser detection although it breaks the jquery browser namespace , therefore breaks too many plugins that user that, as it overrides the property w

[jQuery] Platform detection solved

2007-08-29 Thread Daniel Rossi
I reviewed the source and its much simpler than I thought, here is an extension to jquery that works well, and obviouslly shouldnt break other plugins var userOSAgent = navigator.userAgent.toLowerCase(); // Figure out what browser is being used jQuery.platform = { mac: /mac/.test(use

[jQuery] heartbeat plugin clashing with uiblock plugin

2007-09-03 Thread Daniel Rossi
Hi it seems everytime the heartbeat plugin runs , it refreshes the current page and keeps calling the uiblock plugin $(document).ready(function(){ $.jheartbeat.set({ url: "/index/heartbeat", delay: 3000 }); $.blockUI.defaults.pageMessage =

[jQuery] test

2007-09-05 Thread Daniel Rossi
my emails arent coming through

[jQuery] Re: test

2007-09-05 Thread Daniel Rossi
Interesting, im not getting the initial email, just the replies ! I'm using gmail pop though. On 05/09/2007, at 7:24 PM, Dylan Verheul wrote: Yes they are :-) On 9/5/07, Daniel Rossi <[EMAIL PROTECTED]> wrote: my emails arent coming through

[jQuery] Re: test

2007-09-05 Thread Daniel Rossi
On 05/09/2007, at 9:06 PM, SeViR wrote: Yes they are :-) On 9/5/07, Daniel Rossi <[EMAIL PROTECTED]> wrote: With GMail, your messages has not shown in the conversations. You can use Thunderbird or another email client ;-) Gmail pop here, I use Mac Mail. Thunderbird is terribly

[jQuery] Each events and safari

2007-09-17 Thread Daniel Rossi
Hi ive noticed the each event only gets called once per page load in safari. Is there any way around this. Is it a bug ?

[jQuery] Problems with effects after ajax call

2007-09-19 Thread Daniel Rossi
hi there seems to be a problem loading effects and jquery calls after an ajax call has loaded content, this will not work after an ajax call, the html doesnt get prepended etc $('' + info + '') .prependTo( $(container) ) .fadeIn(this.defaults.fadeIn

[jQuery] Re: Problems with effects after ajax call

2007-09-19 Thread Daniel Rossi
ings, in firefox its the same it wont append the html into the layer, i get the last function call though. Even just $('#media').prepend('test'); Will not show up. On 19/09/2007, at 6:25 PM, Erik Beeson wrote: How does your code relate to ajax? I'm not gettin

[jQuery] Re: Problems with effects after ajax call

2007-09-19 Thread Daniel Rossi
How does your code relate to ajax? I'm not getting it. What's in 'info'? --Erik On 9/19/07, Daniel Rossi <[EMAIL PROTECTED]> wrote: hi there seems to be a problem loading effects and jquery calls after an ajax call has loaded content, this will not work after an a

[jQuery] Re: Problems with effects after ajax call

2007-09-19 Thread Daniel Rossi
19/09/2007, at 6:25 PM, Erik Beeson wrote: How does your code relate to ajax? I'm not getting it. What's in 'info'? --Erik On 9/19/07, Daniel Rossi <[EMAIL PROTECTED]> wrote: hi there seems to be a problem loading effects and jquery calls after an ajax call ha

[jQuery] quicktime plugin not removing when calling empty

2007-09-19 Thread Daniel Rossi
Hi there is there any progress in this bug http://dev.jquery.com/ticket/925 I believe this is a problem in the latest jquery version. The quicktime wont remove itself after calling empty, it will play in the background even though another player object has been added to the elements html

[jQuery] Rich Text Editor plugin

2009-07-26 Thread Daniel Bueno
Hi, I need to put a rich text editor in a textarea. Is there any way to do this with jQuery? Thanks, Daniel Bueno

[jQuery] Re: Rich Text Editor plugin

2009-07-26 Thread DANIEL BUENO
Hi Mike, Thanks for your help. I'll test your sugestion. Now I'm testing the HtmlBox plugin from http://remiya.com/cms/projects/jquery-plugins/htmlbox/. Thank you ***** Daniel Ribeiro Bueno Bacharel em Ciência da Computação Desenvol

[jQuery] Ajax sometimes not executing callback...

2009-07-31 Thread Daniel Israel
I'm using jQuery and jQueryUI. I'm new to jQuery, so any help much appreciated... I have an application where I am displaying a list from a database. When the user hits a button, a modal form dialog comes up and they can enter data. It makes an ajax call to the server, gets the data, pop

[jQuery] Re: Ajax sometimes not executing callback...

2009-07-31 Thread Daniel Israel
Thanks. On Jul 31, 2009, at 1:40 PM, Daniel Israel wrote: I'm using jQuery and jQueryUI. I'm new to jQuery, so any help much appreciated... I have an application where I am displaying a list from a database. When the user hits a button, a modal form dialog comes up and they

[jQuery] Optional Buttons in Modal Form Dialog

2009-08-02 Thread Daniel Israel
Hi All, I am creating an form dialog that will be slightly different for creating data than editing data. I'm pretty new to jquery, but I'm using the jqueryui and it seems to be working fine, but now I'm looking to change the labels of a couple of buttons and have one button available du

[jQuery] Re: jQuery & Adobe Air: onclick event not working

2009-08-31 Thread Daniel Bachhuber
I have this same issue too. Did you ever find a resolution? I've started a thread on Stack Overflow as well: http://stackoverflow.com/questions/1359713/using-jquery-the-onclick-event-and-adobe-air On Jul 23, 11:24 am, DPeters65 wrote: > I am stumped... have been banging my head for days on this

[jQuery] [validation] Specify range with attributes

2009-04-29 Thread Daniel Sabater
Hello I am trying to specify range validation as an attribute in order to have the validation rule as close as possible to the control. Trying to avoid having to specify the rules somewhere else. I am using jquery.validation 1.5.2 I have tried the following, but without luck:

[jQuery] Re: JQuery - Tablesorter - move the last line to firt line

2009-05-11 Thread Daniel Queiroz
I tried to do this Put all rows inside the but in this case the tablesorter don´t work more and crash the javascript.. :S On Mon, May 11, 2009 at 3:29 PM, aquaone wrote: > What is meant by this? I'm assuming that a sort is being performed that is > forcing that row to move based on the conten

[jQuery] Re: JQuery - Tablesorter - move the last line to firt line

2009-05-11 Thread Daniel Queiroz
On Mon, May 11, 2009 at 3:56 PM, aquaone wrote: > ... no. > > is the same level as and . it does not belong inside > the . it should be a child of the . > > stephen > > > > On Mon, May 11, 2009 at 11:52, Daniel Queiroz wrote: > >> I tried to

[jQuery] Custom Attributes with Integer values?

2009-05-14 Thread Daniel Murker
reater than the new value of the *remaining* variable? is it even possible? Daniel

[jQuery] ie6 and .val() issue

2009-10-13 Thread Daniel Murker
I've come across an issue where doing something along the lines of $().ready(function(){ $("#selectbox").val("value"); }); Throws the following error in IE6 Could not set the Selected Property: Unspecified Error. $("#selectbox") referrs to the following html. Default TEST An

[jQuery] Re: ie6 and .val() issue

2009-10-13 Thread Daniel Murker
$(document).ready(function(){ and $().ready(function() are interchangeable. that's not what's throwing the error. This line is: $("#selectbox").val("value"); On Oct 13, 5:36 pm, James wrote: > The line is: > > $(document).ready(function(){ >

[jQuery] Re: ie6 and .val() issue

2009-10-14 Thread Daniel Murker
the was a typo here. It's correct in the source code. Ultimatately the issue wasn't with the Jquery, it was with how IE6 executes javascript faster than it renders dom elements, even when the javascript is nested in a $(document).ready() function. Re-factoring the code so that I'd create the o

[jQuery] show/hide problem

2009-10-24 Thread Daniel Donaldson
I am trying to have a image (link button) appear within a div on mousenter for the div, and disappear on mouseleave. I have this working in the following code as expected, but I only want it to apply to the specific div that is being entered/left. The way I have it right now it applies to the clas

[jQuery] center popup scroll/resize probs

2009-10-25 Thread Daniel Donaldson
So I have a modal popup that is working fairly well, but I have some issues in IE/FF (the only browsers I've tested in so far). One thing is that the popup won't recenter if the browser is resized. The other prob is a bit more difficult to replicate, but I've noticed if my browser window is size

[jQuery] Move an element

2010-01-29 Thread Daniel Beard
I have experimented with next(), siblings(), etc, but with no luck... Many thanks! Daniel

[jQuery] help with safari bug / empty and select

2007-10-16 Thread Daniel Rossi
Hi this wont empty the layer after a video plugin is inserted into the layer using jquery.media $(document).livequery(function(){ $(this) .ready(function() { $('.changeBitrate').change(function(event) { $('#media').empty(); $('#media').media(attrs); });

[jQuery] bug with empty() , quicktime plugin and safari

2007-10-16 Thread Daniel Rossi
Hi there, Im not sure if im messages came through however Ive narrowed down a bug with empty(), quicktime plugins in layers and safari. This same code registers as one child available but after removing the video is still playing even though its removed and not visible. while ( el.firstCh

[jQuery] Fwd: bug with empty() , quicktime plugin and safari

2007-10-17 Thread Daniel Rossi
ike windows media or else id be in deeper trouble. Begin forwarded message: From: Daniel Rossi <[EMAIL PROTECTED]> Date: 17 October 2007 3:13:10 PM To: jquery-en@googlegroups.com Subject: bug with empty() , quicktime plugin and safari Hi there, Im not sure if im messages came through how

[jQuery] Feature Request: Add support for CSS position:fixed for IE6 and lower

2007-11-12 Thread Daniel MacDonald
I don't know if this is the correct forum for this type of request, but it would be extremely helpful if jQuery could apply the hacked IE css for position: fixed. I've been using the following in my conditional IE stylesheet: /* IE hacked CSS */ #topleft { position: absolute; top: expression(

[jQuery] $(document).ready same es Dean Edwards solution

2007-12-17 Thread Daniel Keel
c issue as I do? If yes, which approach was taken? Thanks in advance for your help and time. daniEL

[jQuery] $(document).ready same es Dean Edwards solution

2007-12-17 Thread Daniel Keel
c issue as I do? If yes, which approach was taken? Thanks in advance for your help and time. daniEL

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-17 Thread Daniel Keel
Sorry for this double post. On Dec 17, 6:54 pm, Daniel Keel <[EMAIL PROTECTED]> wrote: > Hello, this is my first post. > > I'm working with jQuery since a month and I have one problem. The $ > (document).ready event doesn't work properly, manly I get the fouc in >

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-18 Thread Daniel Keel
OK. I put it on my test server. Right now does not happen because I'm loading a stylesheet dynamically to fix the problem for the moment. http://www.speculor.com/jquery/combi/ Hopefully someone can help me. -daniEL On Dec 18, 3:28 am, "Karl Rudd" <[EMAIL PROTECTED]

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-18 Thread Daniel Keel
as I understand, the $(document).ready event means that the DOM is ready but that the page is not rendered yet so that you can handle your javascript before the user get the page rendered. Am I wrong? -daniEL On Dec 18, 3:28 am, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > It'd be he

[jQuery] Re: $(document).ready same es Dean Edwards solution

2007-12-18 Thread Daniel Keel
I do all the JavaScript within $(document).ready and not in the window.onload. As far as I understand, the $(document).ready event is fired before the HTML is rendered (DOMContentLoaded in FF). Is this correct or am I mistaken? -daniEL On Dec 18, 8:47 pm, "Jeffrey Kretz" <[EM

  1   2   >