[jQuery] Selecting each instance separately

2010-01-16 Thread alexander
li:gt(2)).hide(); What am I missing ? :) thanks for ideas. Alexander

Re: [jQuery] Re: How to validate fields

2009-12-23 Thread Alexander Benatti
Yes, is this that I want, thanks for your help 2009/12/23 Šime Vidas sime.vi...@gmail.com You mean this? http://vidasp.net/jquery-example2.html

[jQuery] Improvements jQuery.support

2009-10-27 Thread Alexander
I found this website which has done a great job writing some detection functions for some of the new html5 capabilities. Perhaps this is something that could be added to jQuery.support? I don't know the policies for inclusions, perhaps it's something you rather see people include themselves.

[jQuery] Extending jQuery.fn and Wordpress issues

2009-10-26 Thread Alexander Nyquist
Hi! I'm building a jQuery (1.32) plugin for use with Wordpress (2.85). My problem is that when i'm extending the jQuery.fn object, the function is not added to jQuery.fn. Suppose that the plugin is a simple one like the following. jQuery.fn.zapp = function() { alert(zapp!); } It is

[jQuery] Media Plagin

2009-09-11 Thread Alexander Petrichkovich
When Video Player is in Full Screen Mode and browser is Google Chrome then buttons don't work.

[jQuery] Tablesorter, sorting on multiple columns

2009-08-31 Thread Alexander
When I sort on multiple columns, I would like there to be a difference in color between the primary column and the secondary column. Any ideas how I can achieve that? Didn't find anything special about secondary columns in the DOM I could use in CSS.

[jQuery] Re: jquery ajax not working in mozilla

2009-08-28 Thread Alexander C
Are you executing that script in the same domain 'http://localhost:3162http://localhost:3162/VirtualService/RestService.svc/' where the rest service is?. We can't do cross-domain ajax requests. Maybe IE make a exception for their own REST services. Atte, Alexander Cabezas Gerente de

[jQuery] Problem with Ajax Cross-Domain

2009-08-24 Thread Alexander Cabezas
Hi. When i try to make an ajax request like: $.get( http:localhost:3001/account/create.json, SignUp.onComplete ); I get the following error in the firebug ( Net ): OPTIONS - 405 Method Not Allowed Is it related to cross-domain request?.

[jQuery] Re: load() event on a link tag?

2009-08-10 Thread Alexander Freiria
recommend a way to do this? Thanks for the help. -- Regards! Alexander Freiria - Programmer\Web Developer http://www.xandercs.com/ xanderco...@gmail.com 954.549.3666

[jQuery] Re: load() event on a link tag?

2009-08-10 Thread Alexander Freiria
::JQUERY_UI_CSS; ? /') $.getScript(js/mail.js, function() { $(#say_hello_box).dialog(open); }); }); This still doesn't address the original problem, though. Any other ideas? (I really do appreciate the help, Alex) On Aug 10, 10:04 am, Alexander Freiria xanderco

[jQuery] Re: Fade In/Fade Out effect

2009-08-10 Thread Alexander Freiria
to be starting at [0], though. I am perhaps missing something with the order in which the functions are executing. If anyone in the community would like to comment on the code as it stands so far, any insight is appreciated. -- Regards! Alexander Freiria - Programmer\Web Developer http

[jQuery] How to use jQuery with ImageMap

2009-07-02 Thread Alexander
I. Aim: First click on imagemap area - select area(highlight). Second click- deselect area. II. Very similar example. The result should be like this: a) HTML code: p class=blueClick to toggle/p b) CSS: .blue { color:blue; } .highlight { background:yellow; background-color: #1a3654;} c) JS:

[jQuery] Howto detect DOM element from selected text

2009-06-30 Thread Alexander
from the HTML element to the P element that contains the text 'John'. (HTML-Body-P) Did I miss something ? Is there a complete different way to accomplish what I want ? Thanks and good bye, Alexander

[jQuery] Re: Howto detect DOM element from selected text

2009-06-30 Thread Alexander
contains the text that has been selected. If so, return the node. Thats why I tried this code: var array = $(*:contains('SELECTED TEXT ON THE WEB PAGE')); Do you understand what I'm trying to do ? Thanks, Alexander On 30 Jun., 20:13, Charlie charlie...@gmail.com wrote: not sure you've explained

[jQuery] [validate] Question

2009-06-14 Thread Alexander Gornik
Hi there. Is there an option if i want required fields to be highligted on blur? I think it's an obvious requirenment: when user is tabbing through a large form it's good to validate / highlight required fields on blur, even if the form wasn't submitted yet. Can i archive such an behavior?

AW: [jQuery] Re: [autocomplete] - Problem closing autocomplete

2009-06-04 Thread Wende, Alexander
Worster Gesendet: Donnerstag, 4. Juni 2009 03:14 An: jquery-en@googlegroups.com; Wende, Alexander Betreff: [jQuery] Re: [autocomplete] - Problem closing autocomplete On 6/3/09 10:49 AM, AlexKV alexander.we...@kv-rlp.de wrote: If the Autocompleter ist active and I click somewhere else

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread alexander farkas
Hello, instead of: $(.town).live(mousemove,function(ev){ clearTimeout($timeout); $target = ev.target; $timeout = setTimeout(showstuff(), 100);}); try something like this: $('#zoom').bind('mouseover', function(e){ if(e.target.className.indexOf('town') != -1){ $target =

[jQuery] Problem with Ajax Request and Escape

2009-05-17 Thread Alexander Vey
Hello. First of all, I'm German, so be warned ;) I've got a problem and my very hope are you guys (and girls). Here is my code I use to make a ajax request: $.ajax( $.extend(ajax, { data: { cmd:'ping', username:session.username, timestamp:ping.last },

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
: Thank you! I'll have a go when I get home later today and let you know how it works out. At the very least you've given me a very big starting block, and perhaps this will end up in the jQuery core! On Apr 18, 2:34 am, alexander farkas i...@corrupt-system.de wrote: You can try the following

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
@Gordon mouseover and mouseenter is not the same. mouseover bubbles mouseenter not. This means with mouseover/mouseout your handler will be called everytime you mouseover/mouseout a descendant element. With mouseenter your eventhandler is pnly called, if the mouse enters your element. This is the

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-23 Thread alexander farkas
Hello, i forgot to return the jQuery-object in my live-/die- replacement. So please add ' return this; ' to the last line of each-methods. regards alex

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-17 Thread alexander farkas
You can try the following code for this (only testet with firefox). (function($){ var contains = document.compareDocumentPosition ? function(a, b){ return a.compareDocumentPosition(b) 16; } : function(a, b){ return a !== b (a.contains ?

[jQuery] IE6 how can I parse custom XML?

2009-03-22 Thread Alexander Lyabah
It's works on FF, but not in IE6. Final task - it's just full parse of XML. But this example already don;t work in IE6. $('#tt').val('') p = $('nnc1 h /h //c1c1 /c1 //nn') trace(p.children().length) in archive of this group i can't find answers. How I can fix this? Or maybe JQuery have some

[jQuery] IE6 how can I parse custom XML?

2009-03-22 Thread Alexander Lyabah
It's works on FF, but not in IE6. Final task - it's just full parse of XML. But this example already don;t work in IE6. p = $('nnc1 h /h //c1c1 /c1 //nn') trace(p.children().length) in archive of this group i can't find answers. How I can fix this? Or maybe JQuery have some plugin for this?

[jQuery] How to save this context in callbacks

2009-02-07 Thread Alexander
Goodday! Could anyone tell me how to save this context inside callback? Here is simple example: var myClass = jQuery.Class.create({ init: function(){ this.value = value; // callback as argument: someExternalFunction( function() {

[jQuery] Re: Problem jQuery Selecting Input field

2008-10-06 Thread Alexander Gyoshev
attributeEndsWith http://docs.jquery.com/Selectors/attributeEndsWithselectors: $(input[id$=':home']) On Mon, Oct 6, 2008 at 8:27 AM, Faisal Basra [EMAIL PROTECTED] wrote: Yes, right Morningz looks like this. form id=phone input id=phone:home / input id=phone:mobile / /form form

[jQuery] Re: Order load

2008-08-29 Thread John Alexander Betts Alvear
The problem is when a table generated by dataTables plugin is loading it insert in the rows an image that would be loaded after the table. Excuse me because my native language is spanish, not english. Regards! On Thu, Aug 28, 2008 at 5:38 PM, Karl Rudd [EMAIL PROTECTED] wrote: Do you mean

[jQuery] [PLUGINS] Preview: buildBreadcrumb

2007-12-10 Thread Alexander Graef
This is a preview of the breadcrumbs plugin I am currently working on. I will have the first release ready soon. http://dev.portalzine.de/index?/buildBreadcrumb Cheers Alexander - portalZINER- innovation uncovered http://www.portalzine.de dev

[jQuery] How to select by id where the id contains a dot?

2007-11-06 Thread Derek Alexander
Unless I'm mistaken, JQuery (1.2.1) doesn't appear to be able to select by id where the id contains a dot. e.g. span id=error.password/span ... // the following does nothing $(#error.password).append('Required field'); Is this correct, is there any workaround? Cheers, D.

[jQuery] selecting an appended element

2007-11-03 Thread Alexander Alexandrov
understand the problem and can suggest a possible solution. Cheers, Alex - -- Alexander Alexandrov icq: 72163091 [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHLSFEvnm3M1kXDXURAlcYAJ9nqEujo

[jQuery] Re: Queueing and Dequeueing AJAX calls

2007-10-16 Thread Alexander Bilbie
What about using timeouts: var action = setTimeout(function(){ $.ajax({ yada yada}); }, 1); $('#undo').click(function(){ clearTimeout('action'); });

[jQuery] Re: validation plugin: validation of checkboxes fail

2007-10-12 Thread Alexander Graef
); $(this).attr(name, val+[]); } ); $(form).submit(); } }); Cheers Alexander -- portalZINE®- innovation uncovered http://www.portalzine.de dev. portalZINE® - all about development http://dev.portalzine.de pro. portalZINE® - customized

[jQuery] Re: validation plugin: validation of checkboxes fail

2007-10-11 Thread Alexander Graef
Hi, thanks :) How would I reference the name for the rule and message preferences ? Using test[] would break the javascript, can I use 'test[]' as the key value? Will give it a try. Cheers Alexander -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED

[jQuery] validation errors

2007-10-10 Thread Alexander Graef
works if checkboxes have the same name. Thanks Alexander

[jQuery] validation plugin: validation of checkboxes fail

2007-10-10 Thread Alexander Graef
? label for=topic_marketflash input type=checkbox id=topic_marketflash value=marketflash name=topic1 / Marketflash /label label for=topic_fuzz input type=checkbox id=topic_fuzz value=fuzz name=topic2 /Latest fuzz /label Cheers Alexander

[jQuery] Re: Dimensions plugin, offset['top'] returns 0 regardless of position

2007-10-10 Thread Alexander Bilbie
I may be wrong on this but I think it should be: f...n findHeight elem, bottomPad var height = 0; var windowHeight = $(window).height(); var elemOffset = $(elem).offset(); var elementTop = elemOffset.top;// - you stick .top on the end instead of ['top']

[jQuery] Re: EXTjs and Jquery

2007-10-10 Thread Alexander Bilbie
It's worth noting here that if you are only using small parts of Ext then download a custom EXT because it is quite a bloat when you've got everything, but otherwise EXT is fantastic at creating UI's On 05/10/2007, NccWarp9 [EMAIL PROTECTED] wrote: This thing looks asome. On Oct 4, 9:08

[jQuery] Re: validation plugin: validation of checkboxes fail

2007-10-10 Thread Alexander Graef
to the specs, but to the retrieval of information. So either allow the values to be passed as an array or use an unique name for each and allow the grouping of them with another attribute for validation. Cheers Alexander -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: jQueryHelp Forum Launched

2007-09-21 Thread Alexander Bilbie
http://www.jqueryhelp.com/ On 21/09/2007, Scott Sauyet [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Just an FYI for everyone, I've launched a jQuery Forum to offer an alternative method of discussion. [ ... ] Hope to see some of you there! Where's there? :) -- Scott

[jQuery] Re: [SITE SUBMISSION] GAME.co.uk

2007-09-20 Thread Alexander Bilbie
On 20/09/2007, Michael Stuhr [EMAIL PROTECTED] wrote: Peter Bengtsson schrieb: Loading the homepage made my computer feel sluggish. 11 scripts and a total of 74 requests for the homepage!! Not good a good advert for jQuery. Together with the post-loaded XML and Flash and stuff I think

[jQuery] Filtering through XML for Live Search

2007-09-20 Thread Alexander Bilbie
Hi there, I am trying to create a live search by filtering through XML. The XML structure is as follows: studentlist student sid1/sid snameJoe Bloggs/sname sform7B/sform syear7/syear /student student

[jQuery] [Announce] Horizontal Accordion plugin 1.00 alpha

2007-09-14 Thread Alexander Graef
on IE and Firefox so far. Will be doing some more work on it next week, so enjoy the pre-release :-) Have a nice weekend and btw jQuery 1.2 rocks ;) Cheers Alexander - portalZINE(R)- innovation uncovered http://www.portalzine.de http

[jQuery] My Jquery-Tab plugin allow selectable remote tab and add oninit even function

2007-07-27 Thread twe . alexander
Hi all, Happy to share this plugin! It is base on Klaus's tab plugin. http://www.twe-market.com/tab/#remote-tab-4 Regards, Tung

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-27 Thread Alexander Graef
of these are really doing the trick for me. Just sharing :) Alexander -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christof Donat Sent: Friday, July 27, 2007 9:22 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [Off-Topic] CSS Combine Images

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-27 Thread Alexander Graef
Thanks for the input. The image formats are not really an issue, just not supported at this stage of the project :) And this is a cross platform tool, currently running on windows and mac, soon linux. Just had no time to test it on Linux yet. Cheers Alexander -Original Message- From

[jQuery] Re: My Jquery-Tab plugin allow selectable remote tab and add oninit even function

2007-07-27 Thread twe . alexander
Dear Klaus, Sorry~I wasn't trying to make you feel bad on purposed. I'll fixed my title~ And I just want to share how to do that patch~ Best Regard, Tung On Jul 27, 4:21 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Stephan Beal wrote: b) i would recommend renaming your file from jquery.tabs.js

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
Link: http://dev.portalzine.de/index?/pzImageCombine--print http://dev.portalzine.de/index?/pzImageCombine--print Sorry Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Graef Sent: Friday, July 27, 2007 12:22 AM To: jquery-en

[jQuery] [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
of you might see some use for this. Enjoy Alexander - portalZINE(R)- innovation uncovered http://www.portalzine.de http://www.portalzine.de dev.portalZINE(R) - all about development http://dev.portalzine.de http://dev.portalzine.de pro.portalZINE(R

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
The technique is years old and has been used in many different ways over the years. Just trying to ease the way to build the combined images. Cheers Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Olivier Percebois-Garve Sent: Friday, July 27

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
-nopreload-rollovers.html Cheers Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitchell Waite Sent: Friday, July 27, 2007 4:01 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [Off-Topic] CSS Combine Images I think this is a cool idea, but what

[jQuery] ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Hi, Did some updates to the way the horizontal accordion works. You can find the new download and example here: http://dev.portalzine.de/index?/Horizontal_Accordion--print I will be moving this to a plugin for a more generic approach for version 0.6. Enjoy Alexander

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Was never able to load your video, just gave me a black screen. The image in the background was related to css loading from my CMS, which I cleaned up. Also the shifting to the right is related to that. Glad you like the changes. Alexander -Original Message- From: jquery-en

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Well this is most likely related to the background image loading. Should not happen if you assign a solid colour for the background instead. Alexander -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Tuesday, July 17, 2007 5:17

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
with different closing / opening patterns for the accordion. Concerning the white, this is related to the click handler and its background image, but something I am working on :-) Thanks for the feedback Cheers Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED

[jQuery] ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Hi, Did some updates to the way the horizontal accordion works. You can find the new download and example here: http://dev.portalzine.de/index?/Horizontal_Accordion--print I will be moving this to a plugin for a more generic approach for version 0.6. Enjoy Alexander

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
on, was already on my list of things to do :-) Thanks for the feedback Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Tuesday, July 17, 2007 6:33 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: Horizontal

[jQuery] Re: ANNOUNCE: Horizontal Accordion 0.51

2007-07-17 Thread Alexander Graef
Not sure why this got posted multiple times, only submitted once. Sorry Alexander _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Graef Sent: Tuesday, July 17, 2007 5:12 PM To: jquery-en@googlegroups.com Subject: [jQuery] ANNOUNCE: Horizontal

[jQuery] ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexander Graef
in the future ;) http://dev.portalzine.de/index?/Horizontal_Accordion--print Cheers Alexander - portalZINE(R)- innovation uncovered http://www.portalzine.de http://www.portalzine.de dev.portalZINE(R) - all about development http://dev.portalzine.de http

[jQuery] AW: [jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexander Graef
Thanks for the feedback. Will take a look at your video. The image might be a bit big, never noticed it on my connection, but that can be trimmed or replaced by pure css. Just a setup I used here locally. I think the hesitation is related to the easing Thanks again Alexander

[jQuery] get the current mouse position

2007-05-27 Thread Alexander Petri
Hi i have to build a custom tooltip how can i get the current x and y mouseposition?

[jQuery] Text Replacement with Luteman´s Flash Plugin [Character-Problem]

2007-05-16 Thread Alexander Farkas
Hi, I use Luteman´s Flash Plugin for Text Replacement. But the script has some problems with several special characters, especally with (german) vowel mutations (ä,ö,ß etc.), even if i embed more charcters to the flash-file, it does not work. The character encoding of my website is