[jQuery] Jquery noconflict not working

2010-01-17 Thread Alex Crooks
If you look at the page; http://www.sars-clan.co.uk/forums/ (ignore styling etc as its a work in progress) In the header source the forum system myBB calls prototype and then I call jquery and the noconflict; script type=text/javascript jQuery.noConflict();

[jQuery] ajax form plugin submit button

2010-01-06 Thread Alex
Hello everyone, I have a problem submitting a form tag with submit buttons. many of the scripts used in that page require the name of these submit buttons to work correctly. I already read about the serialize function and submit buttons so tried the form plugin as suggested on the jQuery page but

[jQuery] Re: google.load issue

2009-12-30 Thread Alex
Hi David, Google document a nicer way to deal with this in their documentation. The Google API can call a javascript callback when the library you requested has been loaded. http://code.google.com/apis/ajax/documentation/#GoogleLoad Cheers, Alex On Dec 24, 11:44 pm, speedpac...@gmail.com

[jQuery] Re: sorting columns using jquery. noob with html and java. built custom php using snmp

2009-12-29 Thread Alex Mcauley
You have alot of unclosed tags in there ... Let me help you out a bit and pastebin how it should look!... This should help http://pastie.org/759936 On Dec 28, 6:44 pm, ace123 markay...@gmail.com wrote: I'm not sure if this is possible...but I love the jquery tablesorter- but I can't figure

[jQuery] Re: sorting columns using jquery. noob with html and java. built custom php using snmp

2009-12-29 Thread Alex Mcauley
it look pretty so it might be an idea to include that in the document too - save using ugly (and nearly depreciated) font tags On Dec 29, 4:25 pm, Mark K. Ayler Jr. markay...@gmail.com wrote: Alex, Thanks so much. It does look a lot better...and looking through your changes, it makes perfect sense

[jQuery] Re: How cani achieve this functionality?

2009-12-29 Thread Alex Mcauley
Check ajaxrain.com .. they have the perfect example of what you are trying to do. On Dec 29, 4:55 pm, Šime Vidas sime.vi...@gmail.com wrote: The combo is a SELECT element, why shouldn't you be able to write inside it? For every character keyup event, you AJAX load the OPTION elements and put

[jQuery] JQuery hanging for unknown reason

2009-12-28 Thread Alex
? Many thanks, Alex

[jQuery] Re: Jquery + ie7 spans

2009-12-24 Thread Alex Mcauley
Sorry found a typo in my example... $(#jlist) ... should read $(#list) This is not an error in the script just an error in copy/paste! On Dec 23, 11:05 am, Alex Mcauley webmas...@thecarmarketplace.com wrote: Morning and happy holidays!.. I am having some trouble with jQuery and IE7 quirks

[jQuery] Jquery + ie7 spans

2009-12-23 Thread Alex Mcauley
a fix ? Thanks in advance Alex

[jQuery] Re: not able to receive POST data in php file

2009-12-23 Thread Alex Mcauley
Looks like a problem in the PHP/SQL... 1. Make sure $vote is an integer else you will have to wrap it in '' inside the SQL UPDATE statement. 2. The INSERT statement should wrap like this ... INSERT INTO `table_name` (`column1`,`column_2`) VALUES ('$value_1','$value_2') 3. You can save yourself a

[jQuery] Easy Fade in Problem...

2009-12-20 Thread Alex B
Anyone know why it's not fading in the content? It's fully functional, but it just doesn't fadeIn.. function addPerson() { //current keeps track of how many people we have. var strToAdd = 'div id=input class=ideaInputinput name=idea[] class=idea type=text/' strToAdd += 'textarea

[jQuery] Re: Easy Fade in Problem...

2009-12-20 Thread Alex B
=description[] class=description/textarea/div';          $('#all-inputs').append(strToAdd).hide().fadeIn('slow');     }); }); On Sat, Dec 19, 2009 at 10:27 PM, Alex B alexbadal...@gmail.com wrote: Anyone know why it's not fading in the content? It's fully functional, but it just doesn't fadeIn

[jQuery] Help with droppable

2009-12-18 Thread Alex Beston
in the script it will be recognised by the droppable area (as per the example on the jquery site) thanks in advance, Alex - Heres the code I have so far: var these = [ 'red', 'blue', 'green', 'orange', 'white' ]; function makeButtons() { for (i in these) makeWord(these[i]); } function

[jQuery] make a dynamic div resizable

2009-12-17 Thread Alex
Hello there, i'm trying get a div which is dynamically created resizable. the div is created in an ajax request. when i have the div on the page from the start there's no problem, it works fine. only by putting it after the request in another div's body it doesn't work. Here's some of my code.

Re: [jQuery] Re: Jquery does not work in IE8

2009-12-17 Thread Alex Beston
Heres the html I'm using. !doctype html html lang=en head titledrag drop/title link type=text/css href=themes/base/ui.all.css rel=stylesheet / script type=text/javascript src=js/jquery-1.3.2.js/script script type=text/javascript src=ui/ui.core.js/script script type=text/javascript

Re: [jQuery] Re: Jquery does not work in IE8

2009-12-17 Thread Alex Beston
doh, wrong thread.

[jQuery] Help with draggable / droppable

2009-12-17 Thread Alex Beston
Hi there, I'm trying to create some words which can be dragged and dropped into a container. I've tried to dynamically create some divs each containing a word, and they can be dragged okay, but when I try to drop, it isnt recognised. thanks in advance, Alex - Heres the code I have so

[jQuery] jQuery helper function access

2009-11-09 Thread Alex
Hi, there are a couple functions declared in jQuery such as genFx and num, that would be useful in other aspects of jQuery development, and other js activities. They are not attatched to the jQery ovbject. Is there any way currently to access them (me thinks not?), and could they be instead

[jQuery] show div hidden

2009-11-05 Thread alex
Hi everyone, i'm new on google groups and i'm french, well, i hope i'm at the right place. here's my problem : i'm implanting an easy chat system on my website.(like msn) this is how it works someone open a discussion with someone, he send a message. the message is stored in mysql. the other

[jQuery] (validate) - How do I validate required fields before form submit

2009-10-09 Thread Alex
messages for required fields I would like to see them prior as the user tabs through the form. Thanks in advance Alex

[jQuery] Help adding a timer to the innerFade plugin ?

2009-10-03 Thread Alex Barrios
this with this plug in? What do you suggest? Thanks in advance for all your help. [1] http://medienfreunde.com/lab/innerfade/ [2] http://www.alexertech.com/ -- Alex Barrios

[jQuery] Using a selector with .load() doesn't execute script?

2009-09-30 Thread Alex Washtell
I'm trying to load one page into another using the .load() method. This loaded page contains a script that I want to execute when it has finished loading. I've put together a simple example to demonstrate: Index.html: html head titleJquery Test/title script

[jQuery] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-30 Thread Alex Barrios
2009/9/30 Nalum mallon.l...@gmail.com: Hello Alex, The only reason it would be a problem is if you don't apply the jQuery to the input every time it is loaded or if it is loaded a second time and old input is still on the page then you have two elements with the same id. If you have two

[jQuery] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-29 Thread Alex Barrios
i am doing wrong with this ? Why works only the first time and then breaks? Thanks in advance for all your help! :-D Hi Again. After some testing, still nothing appears to work. I put a simple calendar and nothing. Could be that this modal its inside the tab plugin also ? -- Alex Barrios

[jQuery] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-29 Thread Alex Barrios
2009/9/29 Nalum mallon.l...@gmail.com: Hello Alex, Is input type=text name=date id=idFIV readonly=true size=10 class=calendario style=border:none loaded in using ajax? If it isn't then you don't need to put the date picker into a function, you could do the following: http://pastebin.com

[jQuery] ajax complete function not being called

2009-09-28 Thread Alex
I'm making a call to a Twitter JSON feed, and when I pass an incorrect username, jQuery's ajax complete method never gets called. An example of a JSON response that causes complete not to be called (nor error, nor success) is: http://twitter.com/users/show.json?screen_name=bhdjbhubeuhfbfbjfbjf

[jQuery] 'this' keyword in a custom object

2009-09-22 Thread Alex Wibowo
Hi... I'm trying to write object-oriented style javascript as follows: - function HtmlFormUtil(formId){ this.formId=formId; this.dirtyInputs=new Array(); } HtmlFormUtil.prototype.trackForChanges=function(){ $(:input,#+this.formId).change(function(){

[jQuery] Re: jQuery called twice, if I delete one, all jQuery scripts stop working

2009-09-13 Thread Alex Weber
did you get it to work? On Sep 12, 1:33 pm, Adrian Chen ac...@mac.com wrote: On Sep 12, 10:09 am, Alex Weber alexwebe...@gmail.com wrote: That's totally weird! I would start over, delete all the include files and add it once before any other external js script.  Test it and gradually

[jQuery] Re: Selects populating other selects from JSON data

2009-09-12 Thread Alex Weber
and insert it into the select in one step, instead of appending it during each iteration. Using html() will overwrite the previous contents too, so no need to use empty() either. Cheers, Alex On Sep 12, 12:48 am, Steffan A. Cline stef...@hldns.com wrote: on 9/11/09 8:02 PM, Steffan Cline at stef

[jQuery] Re: IDE supporting jQuery

2009-09-12 Thread Alex Weber
, with plugins, you can customize it to become quite powerful! No code-completion for jquery as far as I know though. Alex On Sep 11, 1:02 pm, KirbySaysHi imjustthepianopla...@gmail.com wrote: NetBeans ftw! For JavaScript and PHP, it's probably the best around. Last time I used aptana, it seemed very slow

[jQuery] Re: jQuery called twice, if I delete one, all jQuery scripts stop working

2009-09-12 Thread Alex Weber
-download jQuery and check for any conflicts the other files might have. Try calling jQuery.noConflict() at any point after jQuery and the other libraries have been loaded! Alex On Sep 12, 11:33 am, Adrian Chen ac...@mac.com wrote: I got this at the bottom of a website: script type=text

[jQuery] Re: IDE supporting jQuery

2009-09-11 Thread Alex Weber
Just confirming: Aptana and Netbeans are excellent choices! :) On Sep 11, 8:15 am, szymon jankowski szymon.jankow...@gmail.com wrote: NetBeans IDE also has jquery support. best regards, SJ On Sep 10, 7:58 pm, MorningZ morni...@gmail.com wrote: Are you looking for something where

[jQuery] Re: how can I treat a string as JSON?

2009-09-09 Thread Alex Weber
Geary m...@mg.to wrote: Glad to help, Alex. Some people say eval() is evil, but it isn't. Like any powerful tool, it has certain characteristics that can be good or bad, depending. The 1.3.3-style code is certainly better, using either JSON.parse if it's available or else the Function constructor

[jQuery] Re: post an array

2009-09-09 Thread Alex Weber
You can't post a javascript object, its gotta be key-value pairs if the data is coming from a form you can do: var serial = $('#myform').serialize(); and post the variable serial if not then as far as I know you gotta convert the object into key- value pairs some other way! On Sep 9,

[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-09 Thread Alex Weber
I'm not sure I understand completely, if you mean that the tooltip doesnt work with elements dynamically generated via load(), then it could be a binding issue... try binding an alert() and see if that works. in case it doesn't its because when the event was bound the elements didn't exist...

[jQuery] how can I treat a string as JSON?

2009-09-08 Thread Alex Weber
I use $.getJSON for all my ajax stuff and it works beautifully but there is one particular situation where I use an iframe hack to do an ajax file upload and even though the returned value is a json object (created with PHP), jQuery treats it like a string. I'm using json2.js right now and it

[jQuery] Re: how can I treat a string as JSON?

2009-09-08 Thread Alex Weber
Thanks for that Michael! I guess I've heard so many eval() horror stories that I automatically decided against it... BTW what's this 1.3.3 talk? I thought it was supposed to be released last month? ;) Alex On Sep 8, 5:11 am, Michael Geary m...@mg.to wrote: Why do you not want to use eval

[jQuery] Re: WP-Cumulus

2009-09-08 Thread Alex Weber
Its definitely possible although it would probably not run so smooth on anything but the latest generation of browsers due to the heavy-ish JS required... I've never seen anything like it done but Dynacloud is a very good tag cloud plugin for jQuery, it could be a good starting point! On Sep 8,

[jQuery] possible to override inline onchange() event?

2009-09-04 Thread Alex Weber
I have a select box with an inline onchange() event that reloads the page. Using jQuery I've created a $('#myForm select').live('change', function (e){...}) event handler to intercept the onchange() behavior and even though I have e.preventDefault() and e.stopPropagation() after my jquery event

[jQuery] ancestor descendant selector is much slower than parent child when used in find() in large page

2009-08-19 Thread Alex Scordellis
I have found that row.find(td.someClass span.otherClass) is significantly slower than row.find(td.someClass span.otherClass). Performance of the ancestor/descendant selector is linearly dependent on the amount of other elements on the page, outside the row element, whereas the parent/child

[jQuery] Re: jquery accordion inside the jquery tabs

2009-08-17 Thread Alex Pimenta
I can solve this problem insert tha follow instruction : if (isNaN(g)) g = 0; afer if (l.prop == height) { g = (l.now - l.start) / (l.end - l.start); } so ... step: function(k, l) { if (l.prop == height) { g = (l.now -

[jQuery] Superfish: some floated elements show through the menu

2009-07-29 Thread Alex
in the logged in area. I've tried calling bgiFrame. I've also tried setting z-index's in different places all over the css, but nothin seems to make a difference, if anyone can help I'll be massively greatful. Thanks, Alex

[jQuery] blockUI does work

2009-06-13 Thread Alex
Hi all, I tried on blockUI and the below doesn't work? Any help please? Thanks. html head link rel=stylesheet href=styles.css type=text/css media=all script src=jquery.js/script script src=jquery.blockUI.js/script script $(document).ready(function() { $(div#menu li).click(function()

[jQuery] load spinner not working

2009-06-12 Thread Alex
Hope someone can help. Thanks! Alex

[jQuery] Re: Pasing flash media, with multiple instances on one page.

2009-06-11 Thread Alex
In case others are looking for a similar solution I found something that suited what i needed. http://www.tagtooga.com/tapp/db.exe?c=pgf=FlashMp3Player Stops other players when a new one starts. Perfect! On May 20, 3:54 pm, Alex alexze...@gmail.com wrote: Hello, so here's my issue. I'm just

[jQuery] Re: Confusing and probably inaccurate documentation for noConflict()

2009-06-10 Thread Alex Ehlke
;         }, On Jun 5, 12:06 pm, Alex Ehlke capt...@gmail.com wrote: The online documentation for jQuery.noConflict() seems to be incorrect, or ambiguous at best. Here is the text I'm referring to, fromhttp://docs.jquery.com/Core/jQuery.noConflict: NOTE: This function must be called after including

[jQuery] Re: Remove links but not images

2009-06-09 Thread alex
Thanks for all the help folks - problem sorted out now - I appreciate it. Take care Alex On 9 June, 16:11, mkmanning michaell...@gmail.com wrote: For the example markup you give it's very simple, just do this: $('ul li a').each(function(){         $(this).replaceWith( $(this).children

[jQuery] Re: Remove links but not images

2009-06-09 Thread alex
Thanks for all the help folks - problem sorted out now - I appreciate it. Take care Alex On 9 June, 16:11, mkmanning michaell...@gmail.com wrote: For the example markup you give it's very simple, just do this: $('ul li a').each(function(){         $(this).replaceWith( $(this).children

[jQuery] Selecting previous element

2009-06-08 Thread Alex
li.current - li { background:black; } Which would do the same, but to the element immediately before this one. This is impossible with CSS, how would I select it using jQuery? Many thanks, Alex

[jQuery] Confusing and probably inaccurate documentation for noConflict()

2009-06-05 Thread Alex Ehlke
The online documentation for jQuery.noConflict() seems to be incorrect, or ambiguous at best. Here is the text I'm referring to, from http://docs.jquery.com/Core/jQuery.noConflict : NOTE: This function must be called after including the jQuery javascript file, but before including any other

[jQuery] context issues when using $.ajax please help!

2009-06-05 Thread Alex Weber
me!! sorry if its not too clear , well it is to me but ive been working on this for hours... thanks Alex

[jQuery] Pasing flash media, with multiple instances on one page.

2009-05-21 Thread Alex
Hello, so here's my issue. I'm just the jquery.media plugin. With multiple players being used for each mp3 link. Is there a way I can setup a jquery call that knows to pause (or stop) all other players once a user click on a new player?

[jQuery] jquery pause all flash player elements, allow only one to play.

2009-05-21 Thread Alex
I'm using the jquery.media plugin. On the page i have it has 20 or so flash elements to play each different mp3 files. Is there any way to setup a jquery call so when you click play on the flash element it pauses any other flash player running?

[jQuery] Re: jQuery XML

2009-05-21 Thread alex
OK, so now I have a new method of going about things and I'm so nearly there, but can't get it working. I'm using this piece of Javascript modified from a d'bug post http://itiz.in/12u7 If I remove the medium from the mix, I get an alert box with all three image URLs, no spaces. If I add medium

[jQuery] jQuery XML

2009-05-20 Thread alex
I have this XML file, and I've gotten a few values from it, but I need one more, a create a variable from it, and insert that in to an img tag. XML : http://itiz.in/idvt JS : http://itiz.in/318m So as is clear, getting the track name etc. is fine, but I want the medium sized album art to be

[jQuery] Re: jQuery XML

2009-05-20 Thread alex
size=\medium \) but it didn't work. On May 20, 5:51 pm, alex boba...@googlemail.com wrote: I have this XML file, and I've gotten a few values from it, but I need one more, a create a variable from it, and insert that in to an img tag. XML :http://itiz.in/idvt JS :http://itiz.in/318m So

[jQuery] Best book to learn jQuery?

2009-05-18 Thread alex
Just wondering what your opinions are on the best book out there, for a beginner, to learn jQuery? I know HTML and CSS well enough, but have no javascript knowledge. Thanks

[jQuery] Re: Best book to learn jQuery?

2009-05-18 Thread alex
, too. ;-) --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On May 18, 2009, at 9:07 AM, MorningZ wrote: I always recommend jQuery in Action it's a great read On May 18, 3:19 am, alex boba...@googlemail.com wrote: Just wondering what your opinions

[jQuery] Re: Best book to learn jQuery?

2009-05-18 Thread alex
AM, MorningZ wrote: I always recommend jQuery in Action it's a great read On May 18, 3:19 am, alex boba...@googlemail.com wrote: Just wondering what your opinions are on the best book out there, for a beginner, to learn jQuery? I know HTML and CSS well enough, but   have

[jQuery] JavaScript magician needed

2009-05-15 Thread Alex Tkachman
Hi All! I am looking for JavaScript gurus for 4-6 month contract or full-time position. Please send me your resume if you are guru and interested. Best regards Alex

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-05-03 Thread Alex
I understand the view that Ajax / Lazy-Loading doesn't belong in the grid's code-base but I do think an example showing a basic form of this functionality would be a big help. I know I'd appreciate it.

[jQuery] Recommendation for an autocomplete plugin

2009-04-29 Thread Alex Rades
Hi, I'm looking for a plugin which should be used to populate dynamically an input element, which holds the recipents of a message (the classic case) I have only two requirements: 1) the plugin should be able to insert an image in the dropdown list (the avatar of each recipient) 2) It should

[jQuery] Superfish - permanently display drop-down

2009-04-24 Thread Alex
help adapting the full superfish version to do so. is it possible to tweak the code to do this on certain pages? thanks in advance, Alex.

[jQuery] Array function

2009-04-06 Thread Alex Wibowo
Gday, Is there a short way to do: $(#idOne).show(); $(#idTwo).show(); ? So far, my best bet is to do: $.each([#idOne,#idTwo],function(){ $(+this).show(); }); Thanks in advance! -- Best regards, WiB

[jQuery] Re: jQuery and Ruby on Rails

2009-04-03 Thread Alex
www.railscasts.com search : jquery On 2009-4-3, at 下午4:08, bigPHIL18 wrote: Anyone? On Apr 2, 8:24 pm, bigPHIL18 philip.dud...@quinnipiac.edu wrote: Hello all, I have been reading a lot and can not find what I am looking for. I have a Rails project, and have written a script to get the

[jQuery] I can't open google group in browse

2009-03-21 Thread Alex
Hi guys, I can't open google group in browse .Can you open it ? thank you Alex

[jQuery] Do you have jQuery MVC plugin ?

2009-03-16 Thread Alex
Hi guys, Do you have jQuery MVC plugin based on jQuery1.3 ? Thank you! Alex

[jQuery] Re: Do you have jQuery MVC plugin ?

2009-03-16 Thread Alex
Thank you. On 2009-3-16, at 下午4:44, Schalk Neethling wrote: Hi there Alex, You may want to look into JavaScriptMVC. The author is working on integrating this into jQuery as a plugin. You can also read more about this here: http://www.opensourcereleasefeed.com/interview/show

[jQuery] Re: Do you have jQuery MVC plugin ?

2009-03-16 Thread Alex
oh, suck, http://javascriptmvc.com/ the site be blocked in my Country . I find another MVC js lib based on jQuery, Jamal.js (http://jamal-mvc.com/ ) Thanks . On 2009-3-16, at 下午4:44, Schalk Neethling wrote: Hi there Alex, You may want to look into JavaScriptMVC. The author

[jQuery] Re: Do you have jQuery MVC plugin ?

2009-03-16 Thread Alex
jQuery MVC plugin ? Date: Mon, 16 Mar 2009 16:56:27 +0800 oh, suck, http://javascriptmvc.com/ the site be blocked in my Country . I find another MVC js lib based on jQuery, Jamal.js (http://jamal-mvc.com/ ) Thanks . On 2009-3-16, at 下午4:44, Schalk Neethling wrote: Hi there Alex

[jQuery] What do you recommend to generate UUID with jQuery ?

2009-03-05 Thread Alex
Hi all, What do you recommend to generate UUID with jQuery ? Thank you ! Alex

[jQuery] Re: What do you recommend to generate UUID with jQuery ?

2009-03-05 Thread Alex
thank you very much! On 2009-3-6, at 上午10:48, Mike Alsup wrote: What do you recommend to generate UUID with jQuery ? Thank you ! I've been using something like this: function uid() { var result=''; for(var i=0; i32; i++) result +=

[jQuery] tbody:first-child thead

2009-02-25 Thread Alex Wibowo
Hi all, I have a code that counts the number of rows in a table... the table looks like: table id=myTable thead ... /thead tbody tr /tr /tbody /table and my jquery looks like: $(#myTable tbody:first-child tr).length; strange enough that

[jQuery] Re: tbody:first-child thead

2009-02-25 Thread Alex Wibowo
) Cheers, David Alex Wibowo wrote: Hi all, I have a code that counts the number of rows in a table... the table looks like: table id=myTable thead ... /thead tbody tr /tr /tbody /table and my jquery looks like: $(#myTable tbody:first-child tr

[jQuery] Re: tbody:first-child thead

2009-02-25 Thread Alex Wibowo
sorry i should say how does that explain the behaviour when there's no thead (because it works when thead doesnt exist) On Wed, Feb 25, 2009 at 8:06 PM, Alex Wibowo alexwib...@gmail.com wrote: how does that explain the behaviour when there's thead then?? On Wed, Feb 25, 2009 at 7:47

[jQuery] Re: tbody:first-child thead

2009-02-25 Thread Alex Wibowo
are actually wanting to say is: $(#myTable tbody tr:first-child) Which is select the tr that is the first child of tbody http://docs.jquery.com/Selectors/firstChild Karl Rudd On Wed, Feb 25, 2009 at 8:08 PM, Alex Wibowo alexwib...@gmail.com wrote: sorry i should say how does

[jQuery] Re: tbody:first-child thead

2009-02-25 Thread Alex Wibowo
... instead of: ...BEFORE the E element... -Mensagem Original- *De:* Mauricio (Maujor) Samy Silva css.mau...@gmail.com *Para:* jquery-en@googlegroups.com *Enviada em:* quarta-feira, 25 de fevereiro de 2009 09:24 *Assunto:* Re: [jQuery] Re: tbody:first-child thead Hi Alex, 1-) Doesn't

[jQuery] Re: tbody:first-child thead

2009-02-25 Thread Alex Wibowo
tbody cheers, - ricardo On Feb 25, 5:25 am, Alex Wibowo alexwib...@gmail.com wrote: Hi all, I have a code that counts the number of rows in a table... the table looks like: table id=myTable thead ... /thead tbody tr /tr

[jQuery] whether the structure of the jQuery object like this

2009-02-21 Thread Alex
whether the structure of the jQuery object like this : $('p') if the tag p only one, the structure is : [ [attr = value ]] if the tag p has two , the structure is : [ [ attr = value], [attr = value] ] Thanks Alex

[jQuery] Re: How can I specify what $(this) is within a function?

2009-02-21 Thread Alex
$(this) is no problem. hover_in() and hover_out() should place in each method. if hover_in() and hover_out() placed outside each method, $this in hover_in() and hover_out() is all li tag. are u understand ? you should write like this : =

[jQuery] JavaScript not executing from external html files from Ajax call into Div

2009-02-12 Thread Alex
and .pl file (form post) is not being executed. Any ideas on how to resolve? Any assistance/help would be appreciated. Thanks in advance. - Alex

[jQuery] Re: Large images IE ready event

2009-01-31 Thread Alex
Thanks. Hopefully it will be fixed soon. On Jan 31, 2:32 pm, Karl Swedberg k...@englishrules.com wrote: Hi Alex, Which version of jQuery are you using? If it's 1.3.1, there was a   regression that caused this problem. This has been fixed in the svn version. See the bug report here: http

[jQuery] Large images IE ready event

2009-01-30 Thread Alex
In IE 6 through 8, whenever I use $(document).ready(function(){ });, it doesn't get triggered if there are still images trying to load. I use a graphic engine to draw huge graphs and it can take up to 5 seconds parsing the images and the code between the ready event doesnt get triggered until the

[jQuery] Re: live Problem

2009-01-29 Thread Alex
cool, just what i need . On 2009-1-30, at 上午10:47, Brandon Aaron wrote: Stick with Live Query but grab the latest version of Live Query from GitHub: http://github.com/brandonaaron/livequery/tree/master -- Brandon Aaron On Thu, Jan 29, 2009 at 7:59 PM, Pedram pedram...@gmail.com

[jQuery] how to use onfocus event with jQuery ?

2009-01-28 Thread Alex
hi all, i'm new to jQuery,how to use onfocus event with jQuery ? Could you give me a demo ? Thank you! Alex

[jQuery] Re: how to use onfocus event with jQuery ?

2009-01-28 Thread Alex
thank you! i need to bind focus event to new elem after page loaded, how to do it ? jQuery1.3 live() not support focus and blur event . On 2009-1-29, at 上午11:03, jay wrote: http://docs.jquery.com/Events/focus On Jan 28, 9:28 pm, Alex blackange...@gmail.com wrote: hi all, i'm

[jQuery] Re: Happy 牛 Year !

2009-01-24 Thread Alex
谢谢! On 2009-1-25, at 下午12:40, system div wrote: Today is Chinese New Year . Happy 牛 Year !

[jQuery] Callback problem

2009-01-22 Thread Alex Sergeev
Hello! i have a code var handler = editElementName; function showModalBox(width, height, handler, id) { ... $(.btnSave).click(handler + Save); ... } function editElementNameSave(e) { alert(1); } Why dont work event click? PS sorry for my English - i am from Russia

[jQuery] how to use namespace and Class in jQuery ?

2009-01-22 Thread Alex
Hi all, I ' m new to jQuery. How to use namespace and Class , like this: cm.TestClass = function { } cm is namespace. Alex

[jQuery] Re: Submitting a form with .submit() problems

2009-01-17 Thread Alex Kachayev
If I undestood the task right, you can create code in such way. You form will be like this: tabletr form action=http://jquery.com; method=post id=myForm td input value=submit type=submit onclick=conversion(1000, this); / /td /form /tr /table Convertion(1000, this) will return: true, if it`s

[jQuery] Re: Anyway to highlight words accents-insensitive?

2009-01-13 Thread Alex Tercete
Just for the record, there's another bug with IE when you search for a pattern (let's say e) in a sentence containing two or more occurences of this pattern together (for example: Feel). This is due to a strange way (I call it a bug) that IE has to deal with the split () method. I suggest that

[jQuery] Re: Anyway to highlight words accents-insensitive?

2009-01-12 Thread Alex Tercete
So, I tried something similar to what I had in mind and was able to get it working. I'll put it here in case anyone wants it: # ORIGINAL CODE # highlight: function(value, term) { return value.replace(new RegExp((?![^;]+;)(?![^]*)( +

[jQuery] Re: Anyway to highlight words accents-insensitive?

2009-01-12 Thread Alex Tercete
There is a bug in the previous code with Internet Explorer. To fix it, replace this: ### // If its not the last part, add the accented and highlighted term to the final value if (n everything_except_term.length - 1) { // Get the term with the original accentuation and

[jQuery] Joomla and jqGalScroll

2009-01-08 Thread Alex Osipov
Hi there, i am not sure if i am writing to the right place:) Installed jquery into the joomla, posted, works great Only one thing it's shows the bullets beside every image, and between pagination numbers It works fine on regular html page... Please help?? Best Regards, Alex 778.991.3593 design

[jQuery] Use mouseover when use a Draggable()

2009-01-05 Thread Alex Medeiros
Hi, I want use a mouseover and mouseout event when I Drag some object, but when I use drag in some object the mouse events in other object dont start. Exemple I have a table and its cells have a mouseover and mouseout to change your background. When I move the mouse curso on the cell mouseover

[jQuery] [autocomplete] Anyway to highlight words accents-insensitive?

2009-01-05 Thread Alex Tercete
Autocomplete plugin: http://docs.jquery.com/Plugins/Autocomplete As in the subject, I want to be able to highlight the words accents- insensitivily. Example: if I type Jose, José would be highlighted and vice-versa (José would highlight Jose). Is there anyway to do it? I'm willing to make

[jQuery] validating form with server-side code via ajax (progressive enhancement)

2008-12-18 Thread Alex
Just bumping in hopes of any fresh ideas on this.

[jQuery] looking for hijax validation (with graceful degradation)

2008-12-08 Thread Alex
I'm looking for a way to validate various forms which each require different information, but discrete chunks of information could be easily validated by simple rules (e.g. checks for valid email address, url, zip code, telephone, etc…) In the past, it was satisfactory to make self-submitting

[jQuery] Using window.location.hash for URLs without plugin

2008-12-05 Thread Alex Hempton-Smith
for example, if the URL was /#contact? This would need to provide for about 3 pages, Home, About, Portfolio and Contact. I know there's a plugin for enabling use of the back button etc, but I'd rather something simple without having to load plugins. Many thanks, Alex

[jQuery] Re: Using window.location.hash for URLs without plugin

2008-12-05 Thread Alex Hempton-Smith
Thanks, I ended up using a switch: var page = location.hash; switch(page) { case #networks: showPlaces(); break; case #about: showAbout(); break; case #contact: showContact(); break; default: showPlaces(); } Works great for me. Thanks again, Alex -- Alex On Fri, Dec 5, 2008 at 5:57 PM, Andy

  1   2   3   >