[jQuery] Selecting each instance separately

2010-01-16 Thread alexander
rest . I tried $(".gallery li:gt(2)").hide(); The result is that only first 3 s are shown and only in first gallery. The rest is hidden. I am looking for something like $(".gallery:each 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 > 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. Howev

[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 regis

[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:3162<http://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, Alexand

[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: Fade In/Fade Out effect

2009-08-10 Thread Alexander Freiria
played doesn't seem 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. -- Re

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

2009-08-10 Thread Alexander Freiria
ot;body").prepend(' href="css/ php echo Page::JQUERY_UI_CSS; ?>" />') >$.getScript("js/mail.js", function() { > $("#say_hello_box").dialog("open"); >}); > }); > > > This still doesn't address the orig

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

2009-08-10 Thread Alexander Freiria
oblem is that sometimes the dialog box opens > before the CSS has loaded. I would like to add the equivalent of $ > ("#example").load(), since using load() does not seem to work. Can > anyone 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] 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: Click to toggle b) CSS: .blue { color:blue; } .highlight { background:yellow; background-color: #1a3654;} c) JS: $(document).ready(fu

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

2009-06-30 Thread Alexander
if any of them 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 wrote: &g

[jQuery] Howto detect DOM element from selected text

2009-06-30 Thread Alexander
tain 'John' , it returns only the path 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] [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-03 Thread Wende, Alexander
Im Auftrag von Tom 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" wrote: > If the Autocompleter ist active and I click somewhere els

[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 }, er

[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-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
.live('mouseenter', add, true) .live('mouseleave', remove, true); }); regards alex On 20 Apr., 16:23, Walther wrote: > 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

[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 ? a.cont

[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 = $('') 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] 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 = $('') 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 selectors: $("input[id$=':home']") On Mon, Oct 6, 2008 at 8:27 AM, Faisal Basra <[EMAIL PROTECTED]> wrote: > > Yes, right Morningz looks like this. > > > > > > > > > > > > > > > > > i want to access in

[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 me

[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. ... // 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
owsers without success. I hope you 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 iD

[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"); $(this).attr("name", val+"[]"); } ); $(form).submit(); } }); Cheers Alexander -- portalZINE®- innovation uncovered http://www.portalzine.de dev. portalZINE® - all about devel

[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 PRO

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

2007-10-10 Thread Alexander Graef
refering 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

[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,

[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] 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
are different for each checkbox. How do I chain them for validation with each checkbox having its own name ? Marketflash Latest fuzz Cheers Alexander

[jQuery] Re: ajaxcfc - if ajax call fails - how does it get handled?

2007-09-24 Thread Alexander Bilbie
It's just 'failure' then function etc.. So from your script: $.AjaxCFC({ url: "/packages/ajax/primaryInvitee .cfc", method: "addInvitee", data: options, success: function(r) { thisCheck = "check_" + r.LOGI

[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? :) >

[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: 1 Joe Bloggs 7B 7 2 John Doe 7B 7

[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

[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>

[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.tab

[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: [Off-Topic] CSS Combine Images

2007-07-27 Thread Alexander Graef
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] 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-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 is

[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
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: jqu

[jQuery] [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
e 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

[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 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
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] 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
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] 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
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] 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] 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] ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexander Graef
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

[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 ISO-8859-