[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; jQuery.noConflict(); jQuery(document).ready(function($){ //my jquery stuff

[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...@gmai

[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 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 them inside the

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

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

[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 wrote: > I'm not sure if this is possible...but I love the jquery tablesorter- > but I can't figure out how to get it

[jQuery] JQuery "hanging" for unknown reason

2009-12-28 Thread Alex
fix problems / add small features to existing projects? 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 wrote: > Morning and happy holidays!.. > > I am having some trouble with jQuery and

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

[jQuery] Jquery + ie7 spans

2009-12-23 Thread Alex Mcauley
an.more-details').hide(); $(that).parents('.entry span').prev('.show-more-details').show(); // IE8 Fix }); }); As i said it works in every other browser (haven't tested IE6 but i dont care about that)... Has anyone had this problem before and knows a fix ? Thanks in advance Alex

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

2009-12-20 Thread Alex B
tion () >    { >          var strToAdd = ' name="idea[]" class="idea" type="text"/> class="description">'; > >          $('#all-inputs').append(strToAdd).hide().fadeIn('slow'); >     }); > > > > }); > On Sat

[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 = '' strToAdd += '' $('#all-inputs').append(strToAdd); }; $(document).ready(function()

[jQuery] Help with droppable

2009-12-18 Thread Alex Beston
tic div 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 makeB

[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

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

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

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

2009-12-17 Thread Alex Beston
Heres the html I'm using. drag & drop #droppable { background: black; width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; } $(document).ready( initialise); // js var these = [ 'white', 'black', 'orange, 'etc' ]; function makeButtons() { for (i in these)

[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. if(

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

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

[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
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] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-30 Thread Alex Barrios
2009/9/30 Nalum : > > 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. > >

[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: Jquery Test $(document).ready(function()

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

2009-09-29 Thread Alex Barrios
2009/9/29 Nalum : > > Hello Alex, > Is 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/m4ddcd98b >

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

2009-09-29 Thread Alex Barrios
> a record to the database, and then just call again the dialog using > the link. > > The thing is that when i use this the first time, works perfect, when > i try to add a second record, the date picker doesnt refresh the > field. It shows the calendar, but when i select a value, this doesnt > appear in the input, and even more strange, if i close de dialog and > then reopen, it appears the value that i tried to select, selected, > but the same problem again. > > What 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] 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 wrote: > On Sep 12, 10:09 am, Alex Weber 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 gra

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

2009-09-12 Thread Alex Weber
Also, re-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 wrote: > I got this at the bottom of a website: > > > > &

[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 wrote: > NetBeans ftw! For JavaScript and PHP, it's probably the best around. > Last time I used aptana, it seemed very slow, that w

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

2009-09-12 Thread Alex Weber
rease the performance because you cache all the data in a variable 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. Clin

[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 wrote: > NetBeans IDE also has jquery support. > > best regards, > > SJ > > On Sep 10, 7:58 pm, MorningZ wrote: > > > Are you looking for something where Intellisense would work for > > jQuery?  

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

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

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

2009-09-09 Thread Alex Weber
m, Michael Geary 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 > a

[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 wrote: > Why do you not want to use e

[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] how can I treat a string as JSON?

2009-09-07 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 doe

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

[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 - l.st

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

2009-07-29 Thread Alex
ially 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. $(document).ready(function() { $("div#menu li").click(function() { $('div.blockMe').block({ message: null }); var type = ($(this).attr("id")); $(this

[jQuery] load spinner not working

2009-06-12 Thread Alex
bb871 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=pg&f=FlashMp3Player Stops other players when a new one starts. Perfect! On May 20, 3:54 pm, Alex wrote: > Hello, so here's my issue.

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

2009-06-10 Thread Alex Ehlke
.jQuery = _jQuery; >                 return jQuery; >         }, > > On Jun 5, 12:06 pm, Alex Ehlke wrote: > > > The online documentation for jQuery.noConflict() seems to be > > incorrect, or ambiguous at best. Here is the text I'm referring to, > > fro

[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 wrote: > For the example markup you give it's very simple, just do this: > > $('ul li a').each(function(){ >         $(this).replaceWith( $(this).c

[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 wrote: > For the example markup you give it's very simple, just do this: > > $('ul li a').each(function(){ >         $(this).replaceWith( $(this).c

[jQuery] Selecting previous element

2009-06-08 Thread Alex
g like: #mynav 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] context issues when using $.ajax please help!

2009-06-05 Thread Alex Weber
to add a return statement based on the value received from the $.post this is killing me!! sorry if its not too clear , well it is to me but ive been working on this for hours... 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 confl

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

[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-20 Thread alex
tried find("image size=\"medium \"") but it didn't work. On May 20, 5:51 pm, alex 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 :h

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

[jQuery] Re: Best book to learn jQuery?

2009-05-18 Thread alex
nglishrules.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 wrote: > > >> Just wondering what your opinions are on

[jQuery] Re: Best book to learn jQuery?

2009-05-18 Thread alex
-) > > --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:

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

[jQuery] Superfish - permanently display drop-down

2009-04-24 Thread Alex
ciate some 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 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 class of a ul. I want to pass

[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] Re: Do you have jQuery MVC plugin ?

2009-03-16 Thread Alex
gt; > > 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://w

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

[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] 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: 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; i<32; i++) result += Math.floor(Math.random()*16).t

[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: tbody:first-child & thead

2009-02-25 Thread Alex Wibowo
number of rows in the first > tbody > > cheers, > - ricardo > > On Feb 25, 5:25 am, Alex Wibowo wrote: > > Hi all, > > I have a code that counts the number of rows in a table... > > > > the table looks like: > > > > > > > >... > &g

[jQuery] Re: tbody:first-child & thead

2009-02-25 Thread Alex Wibowo
a. > > Read: ...BEFORE the F element ... > > instead of: ...BEFORE the E element... > > > > > -Mensagem Original- > *De:* Mauricio (Maujor) Samy Silva > *Para:* jquery-en@googlegroups.com > *Enviada em:* quarta-feira, 25 de fevereiro de 2009 09:24 &g

[jQuery] Re: tbody:first-child & thead

2009-02-25 Thread Alex Wibowo
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 wrote: > > sorry

[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 wrote: > how does that explain the behaviour when there's thead then?? > > > > On

[jQuery] Re: tbody:first-child & thead

2009-02-25 Thread Alex Wibowo
tbody) > > Cheers, > David > > > > Alex Wibowo wrote: > >> Hi all, >> >> I have a code that counts the number of rows in a table... >> >> the table looks like: >> >> >> >> ... >> >> >> >>

[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: ... and my jquery looks like: $("#myTable tbody:first-child tr").length; strange enough that always returns 0. but if i remove the thead from the

[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 : = $.fn.simpl

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

[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 wrote: Dear FOlk , I'm g

[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 wrote: hi all, i'm new to jQuery,

[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: 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: http://jquery.com"; method="post" id="myForm"> Convertion(1000, this) will return: true, if it`s neccesary to submit form. false, in other case. For this question: 'Is there another way to get

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

[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("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?

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

2009-01-10 Thread Alex Tercete
Thank you both for your answers! I was already considering using Eric's idea of stripping the accents and comparing the words. Since this would apply to highlighting (too many h's and g's in this word!) a typed word in a sentece, I think I would have to do something like that: Let's suppose I ha

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

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

[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] Another date picker

2008-12-11 Thread Alex Kroman
tered dates is presented unobtrusively and inline. You can view the demo and get the code here: https://www.opensourcery.com/blog/alex-kroman/better-date-picker Thanks, Alex

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

  1   2   3   >