[jQuery] Re: ajax request on local machine and FF3/Firebug "Access to restricted URI denied code: 1012"

2009-02-27 Thread jQuery Lover
You can read more about the "Access to restricted URI denied" code: "1012" error here: http://jquery-howto.blogspot.com/2008/12/access-to-restricted-uri-denied-code.html On Sat, Jan 17, 2009 at 5:31 AM, jquertil wrote: > > except its not a bug - its a feature request... > > On Jan 16, 2:39 pm,

[jQuery] Re: .live() handler & svg elements

2009-02-27 Thread gav
So far I have done so: $("*").live("mouseover", function(e) { var le = e.originalTarget; var className = le.getAttribute("class"); if (className == 'someclass') { ... } }); but I don't think what this is true

[jQuery] Re: SuperSubs behaving strangely in Superfish Joomla extension

2009-02-27 Thread yak
Hi oobie, The problem I'm having is trying to set the min/max setting on the supersubs plugin. I can't seem to get it right. The drop down menu seems to be working okay except for one submenu where the length extends beyond the edge of the display. This doesn't seem to be the case with the oth

[jQuery] Re: click event and window.location problem in safari

2009-02-27 Thread Karl Rudd
Try this plugin: http://newism.com.au/blog/post/58/bigtarget-js-increasing-the-size-of-clickable-targets/ Karl Rudd On Sat, Feb 28, 2009 at 1:49 AM, introvert wrote: > > Hello > > I have a simple jquery code that will put a link (on click event) on a > division. The link is read from the ancho

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Josh Powell
oh, very nice. I wasn't aware of toggleClass. On Feb 27, 6:51 pm, Karl Swedberg wrote: > Hi Zac, > > You just need to add one line -- $(this).toggleClass('yourClass'); --   > where "yourClass" is the class you want to toggle on and off. > > You should also add return false after that line so th

[jQuery] Re: alternate color row starting from a point

2009-02-27 Thread Josh Powell
hmmm, tough one, it was fun. $(function() { var color = ''; $('#everyother tr').each(function() { if( $(this).hasClass('className') ) { color = 'red'; } else if (color === 'red') { $(this).css({'background-color': 'red'}); color = '';

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Karl Swedberg
Hi Zac, You just need to add one line -- $(this).toggleClass('yourClass'); -- where "yourClass" is the class you want to toggle on and off. You should also add return false after that line so that the default click behavior doesn't occur. jQuery.fn.fadeToggle = function(speed, easing, cal

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Jack Killpatrick
this might help get you down the right path: http://docs.jquery.com/Events/toggle#fnfn2fn3.2Cfn4.2C... - Jack zac wrote: Hi.. I am trying to have it so my navigation toggle hidden boxes on the site. I want it so the link toggles the box on and off, as well as having the link itself have a cl

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Josh Powell
Without really understanding what your fadeToggle plugin is doing, this will toggle adding and removing a class: $(function() { $('a.aboutlink').toggle( function () { $(this).addClass('aboutBox');

[jQuery] Help please with toggling a class

2009-02-27 Thread zac
Hi.. I am trying to have it so my navigation toggle hidden boxes on the site. I want it so the link toggles the box on and off, as well as having the link itself have a class toggled on and off (a background color). So far I have the toggling box... jQuery.fn.fadeToggle = function(speed, easing

[jQuery] Re: Form inside Form value

2009-02-27 Thread MorningZ
starting with valid HTML, something nested tags certainly isn't, would be a great start towards doing "possible" coding as for jQuery being involved in this, it wouldn't really care if you had On Feb 27, 8:31 pm, Po01 wrote: > Can you give me a different way? > I cant believe

[jQuery] Re: alternate color row starting from a point

2009-02-27 Thread Thomas Jaggi
Sorry, that's above my abilities... Anyone else?

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Can you give me a different way? I cant believe its impossible to get the value of a field inside a form when both are inside another form. Thanks. On 27 fev, 18:34, tres wrote: > Do it a different way. > > On Feb 28, 6:20 am, Po01 wrote: > > > Oh, and i know its not under "webstandarts" but i

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-02-27 Thread James
Since the session check is done server-side, you can do it with every AJAX request server-side. If their session is not active anymore, return a specific status for it. It's good to use JSON response for this so you can return several sets of data, such as statuses, data, etc. On Feb 27, 12:45 pm

[jQuery] Re: Multiple inclusions of jquery possible?!?

2009-02-27 Thread Josh Powell
http://groups.google.com/group/jquery-dev/browse_thread/thread/3efd1066b535234f On Feb 27, 3:19 pm, ml1 wrote: > Hi folks: > > We use jquery extensively in an application that suddenly needs to > make use of an online ecommerce system that also happens to use > jquery. > > This is causing thin

[jQuery] jCarousel Re-load

2009-02-27 Thread Alextronic
First of all, sorry for my english, and thank you in advance. I can't seem to dinamically load new sets of items in a jCarousel when the user clicks on a series of tabs. I'm trying to do it by changing the innerHTML depending on the tab clicked. To do this I'd need to reload/reset the carousel c

[jQuery] Re: Jcarousel - Can I make a jcarousel completely reset and reload!

2009-02-27 Thread Alextronic
Oh I'm having the same problem, exactly. I have been working on this for a long time, me not being proficient in jQuery. I'm trying to do something very much like your tabs loading new sets of items. The carousel gets confused, the items seem to persist, and I can't reload it without having the o

[jQuery] Re: Custom ScrollBar

2009-02-27 Thread dbonneville
Hi - did you get this to work? I keep getting: uncaught exception: Syntax error, unrecognized expression: # ...when I try to run jscrollpane with simplemodal. The scroll pane works fine until I try to call from a modal dialogue popup... Thanks, Doug On Feb 16, 10:29 am, Alexandru Dinulescu

[jQuery] jQuery.ajaxSetup({ success: ... }) behavior

2009-02-27 Thread creemorian
Along with every AJAX callback, I'd like to ensure that the user session is still active. So I have the following: > jQuery.ajaxSetup({ >success: function(data, text) >{ > if ( data.event == "login" ) { >window.location.reload(); > } >} > }); The aforementioned c

[jQuery] Form Validation - Display text area input...

2009-02-27 Thread Ena
Hi, I know it's pretty common (and probably a simple thing to do), but I'd like to display the name and text that the user types into my form (form.aspx) on a response page (response.aspx) that the form goes to before submitting. Like a two-part submission so they can check their info and go back

[jQuery] jerky animations in IE !

2009-02-27 Thread vsync
Hello. I've built a fairly simple website with a modal box that needs to fadeIn when clicked on a button. problem is, in IE (6 and 7) its super slow and jerky. This is very weired and its the first time i've seen this, because I've used this method enough times on other projects and IE worked fine

[jQuery] slideToggle and cookies

2009-02-27 Thread svnlto
hi there, i can't get my head around it. Could one explain to me how i save to state of the menu into a cookie so when the page gets refresh the menu would still stay open. $(document).ready(function() { $('ul#menu li ul').hide(); $('ul#menu li a h2.works').click(functio

[jQuery] Error with jscrollpane and simplemodal

2009-02-27 Thread dbonneville
I have jscrollpane working in a test page - works great. I also have simplemodal working throughout a site - works great. But, when I try to put a jscrollpane instance in a simplemodal div, I get this error when the modal renders to the screen: uncaught exception: Syntax error, unrecognized expre

[jQuery] Error with jscrollpane and simplemodal

2009-02-27 Thread dbonneville
I have jscrollpane working in a test page - works great. I also have simplemodal working throughout a site - works great. But, when I try to put a jscrollpane instance in a simplemodal div, I get this error when the modal renders to the screen: uncaught exception: Syntax error, unrecognized expre

[jQuery] Re: Superfish update?

2009-02-27 Thread uztha4c
Cool thanks. On Feb 27, 2:16 pm, James wrote: > It works fine for me. > > On Feb 27, 12:13 pm, uztha4c wrote: > > > Does superfish work with the new 1.3.2 JQuery? if not when will there > > be an update?

[jQuery] building object orientated javascript libraries - does jQuery support/help here???

2009-02-27 Thread greghauptmann
Hi all, I confess this is a newbie question in advance: Q1 - If one wants to build a set of higher level library functions in javascript (e.g. to aid in drawing objects say) does jQuery assist here? That is would it provide a framework, or a standard way of building up JavaScript code with an O

[jQuery] Re: FadeTo() On Table Row

2009-02-27 Thread Brian Schilt
I don't believe its a bug with jQuery, I think I remember that this exact topic came up before and the outcome was jQuery is fine, IE just sucks. So what is your desired effect? Do you want to hide the rows completely? or just fade them out a bit? Have you tried using the 'animate' method (http:

[jQuery] Multiple inclusions of jquery possible?!?

2009-02-27 Thread ml1
Hi folks: We use jquery extensively in an application that suddenly needs to make use of an online ecommerce system that also happens to use jquery. This is causing things to break badly, not least because they use 1.2.6 but we have to use 1.3.2 to take advantage of a bugfix, and also because on

[jQuery] Re: Newbie clueTip Plugin style removal

2009-02-27 Thread alan
MUCH respect Karl, I am sorry I didn't check the source produced after I'd set my styles. I assumed my styles were overriding but not that their presence was being detected and automatically removing the default styles I saw when I first tried the plugin. What a polished plugin. Cheers! -Alan

[jQuery] Re: Form Validation

2009-02-27 Thread Gelegrodan
Use the jquery validation plugin! http://bassistance.de/jquery-plugins/jquery-plugin-validation/ On Feb 27, 9:27 pm, ml2009 wrote: > I have just started using jQuery and wonder if you could help me > please. > > I am working on a form which contains a field to enter multi-email > addresses.  How

[jQuery] Re: Superfish update?

2009-02-27 Thread James
It works fine for me. On Feb 27, 12:13 pm, uztha4c wrote: > Does superfish work with the new 1.3.2 JQuery? if not when will there > be an update?

[jQuery] Re: problems validating xhtml when using jquery append

2009-02-27 Thread James
Yep. That, or put your scripts externally. :) On Feb 27, 9:17 am, clivey_g wrote: > hiya, > > i discovered that my lovely xhtml page stopped being xhtml valid when > i used the jquery append function.  it gives the error: > "document type does not allow element "link" here" > > the solution is t

[jQuery] Superfish update?

2009-02-27 Thread uztha4c
Does superfish work with the new 1.3.2 JQuery? if not when will there be an update?

[jQuery] Show active pages in accordion-style navigation

2009-02-27 Thread DavidMcK
Hi, I've built an accordion-style navigation from an unordered list, and I want it to show the active page, but can't work out how to do it. UI Accordion does it perfectly, and I would use it but I want the section header links to be clickable as well as expandable. This is the list:

[jQuery] Re: Newbie clueTip Plugin style removal

2009-02-27 Thread Karl Swedberg
the positioning properties (left, top), width, and zIndex are set by the plugin, but you can adjust them by changing their respective options. You can change all other properties by using the IDs and classes already supplied by the plugin or by using .cluetip-fdFaq . When you modify the c

[jQuery] Re: [listnav] in Chrome

2009-02-27 Thread simshaun
Sorry for the late reply. Sure I'll try it out. On Feb 23, 1:20 pm, Jack Killpatrick wrote: > Hi, > > I have a new rev of the listnav plugin almost ready for release. Do you > want to give it a try and let me know if the issue has been resolved? If > so, let me know and I'll get a copy to you. >

[jQuery] Re: Form inside Form value

2009-02-27 Thread tres
Do it a different way. On Feb 28, 6:20 am, Po01 wrote: > Oh, and i know its not under "webstandarts" but i really need to get > the value. > Yes the email is the name of the label field. > > On 27 fev, 16:14, Po01 wrote: > > > Tried the $("form2 field").val(); but remember that form2 is a > >

[jQuery] test

2009-02-27 Thread hosemaria
test

[jQuery] Form Validation

2009-02-27 Thread ml2009
I have just started using jQuery and wonder if you could help me please. I am working on a form which contains a field to enter multi-email addresses. How could I validate this field using jQuery? This is what I would do if I were not using the jQuery library function multiEmail(my_emails) {

[jQuery] ajax data

2009-02-27 Thread hosemaria
Hi to all I got the following problem I want to send to PHP server nested json using ajax. {item1:'one', item2:'', item3:[{item31:'sdf', item32:'sdfs'}] } My code: $.ajax({ url: "translation_edit.php",

[jQuery] [treeview] Problems with jQuery 1.3.2

2009-02-27 Thread Antivanity
Having an issue when using treeview plugin with jq 1.3.2. I can get it to work in jq 1.2... Pretty much, from what i can tell, its not applying the classes to the ul and li tags. I think it has something to do with the way the selectors are trying to find the tags. Has anyone successfully used tr

[jQuery] ajax data

2009-02-27 Thread hosemaria
Hi to all I got the following problem I want to send to PHP server nested json using ajax. {item1:'one', item2:'', item3:[{item31:'sdf', item32:'sdfs'}] } My code: $.ajax({ url: "translation_edit.php",

[jQuery] problems validating xhtml when using jquery append

2009-02-27 Thread clivey_g
hiya, i discovered that my lovely xhtml page stopped being xhtml valid when i used the jquery append function. it gives the error: "document type does not allow element "link" here" the solution is to wrap the javascript in a cdata tag like this: // enclose the jscript

[jQuery] Re: $.post error on response

2009-02-27 Thread James
Do you have any other ajax options set outside the code you've provided? It would be helpful if you try this on a demo page and isolate the issue. It sounds like something else may be interfering with it. On Feb 27, 9:46 am, Dan wrote: > Hi Ricardo, > > I've been trying so many different combin

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread Gelegrodan
Yeah that seems to work, if i have async: false ;) Thanks! On Feb 27, 8:06 pm, James wrote: > I think it's a function scope thing. > How about something like: > > function pnrexists(a){ > var returnVal = false; > $.ajax({ > async: true, > url: '/in

[jQuery] Re: jQuery tabs problem with language

2009-02-27 Thread Klaus Hartl
You have a "#" too much in your panel ids... Should read: ... --Klaus On 27 Feb., 17:35, hitautodestruct wrote: > Hi, > > I have a problem implementing jQuery tabs using hebrew content in the > li and div elements. > I get the error "jQuery UI Tabs: Mismatching fragment identifier" when > cl

[jQuery] Re: My birthday gift to the jQuery Community

2009-02-27 Thread Jsudesign
thanks this is cool On Feb 27, 10:44 am, "Rick Faircloth" wrote: > Nice, Sean! > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Sean O > Sent: Friday, February 27, 2009 1:20 PM > To: jquery-en@googlegroups.com > S

[jQuery] Re: Please, help me convert this flash menu into a jQuery menu?

2009-02-27 Thread ricardobeat
You can do that with pure CSS: http://jsbin.com/eyivu http://jsbin.com/eyivu/edit with jQuery: $('#menu li a').hover(function(){ $(this).stop() .css({ backgroundColor: '#C66' }) .animate({ marginLeft: '+=5px' }, 200); }, function(){ $(this).stop() .css({ backgroundColor:

[jQuery] Re: $.post error on response

2009-02-27 Thread Dan
Hi Ricardo, I've been trying so many different combinations to get this to work that I forgot the callback function on the version I posted. I've tried it with the callback and even copy/pasted your code and still no luck. I'm completely baffled why a simple echo statement isn't getting returned

[jQuery] Re: $.post error on response

2009-02-27 Thread Dan
Thanks for the quick reply. I tried your code and the alert displays "[object XMLHttpRequest]". Firebug still doesn't display anything in the response even though the PHP function is just echoing "checked out". On Feb 27, 12:46 pm, MorningZ wrote: > oops.. forgot to change one line > > CallParam

[jQuery] Re: $.post error on response

2009-02-27 Thread ricardobeat
Where are you expecting to collect the response? Are you using a callback? function check_out_image(image_id) { $.post('ajax/checkout_image', {imageid: image_id}, function(resp){ alert(resp); }); } On Feb 27, 2:41 pm, Dan wrote: > I'm using jquery 1.3.2 and trying to send some dat

[jQuery] Re: File Input field Help

2009-02-27 Thread Chris
*sighs* on behalf of spam. :( Anyone know have suggestions as to what I am doing wrong. On Feb 27, 2:11 am, saifullah hanif wrote: > http://tinyurl.com/cyecufhttp://tinyurl.com/ahvxzc > > http://tinyurl.com/8rwmkr > > http://tinyurl.com/7wbm8o > On 2/26/09, Chris wrote: > > > > > I tried this:

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Oh, and i know its not under "webstandarts" but i really need to get the value. Yes the email is the name of the label field. On 27 fev, 16:14, Po01 wrote: > Tried the $("form2 field").val(); but remember that form2 is a > variable, tried some stuff but it doesnt work. > Also tried $(Form2).find

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Tried the $("form2 field").val(); but remember that form2 is a variable, tried some stuff but it doesnt work. Also tried $(Form2).find('input[name="email"]').get(0).val(); and.. cant get the value =( On 27 fev, 06:43, saifullah hanif wrote: > http://tinyurl.com/cyecufhttp://tinyurl.com/ahvxzc >

[jQuery] Re: Problem in selectors

2009-02-27 Thread RandyJohnson
Ricardo... Thanks for the reply. I was just getting around to updating this thread to indicate that "validate" was the problem. I updated validate to the 1.5.1 version sitting on Jorn's site and the problem went away. Still working my way through all of the code to make certain that jQuery 1.3

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread James
I think it's a function scope thing. How about something like: function pnrexists(a){ var returnVal = false; $.ajax({ async: true, url: '/inc/chkusr.php?q=p', type: 'POST', dataType: 'html', data: {'pn

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread Gelegrodan
function pnrexists(a){ var html = $.ajax({ async: false, url: '/inc/chkusr.php?q=p', type: 'POST', dataType: 'html', data: {'pnr': a}, timeout: 2000, }).responseText; if(html==1)

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread James
Oops, I just read that you did try 'false'.. On Feb 27, 9:03 am, James wrote: > I'm sorry, I mean 'async: false'! Try that. :) > > On Feb 27, 8:54 am, Gelegrodan wrote: > > > Hello! > > Thanks you your answer, but it seems like it didnt help! > > > function pnrexists(a){ > >         $.ajax({ >

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread James
I'm sorry, I mean 'async: false'! Try that. :) On Feb 27, 8:54 am, Gelegrodan wrote: > Hello! > Thanks you your answer, but it seems like it didnt help! > > function pnrexists(a){ >         $.ajax({ >                 async: true, >                 url: '/inc/chkusr.php?q=p', >                 ty

[jQuery] Re: Ajax reacts very slow...?

2009-02-27 Thread James
I don't think you can do much on the PHP-side. The latency is hard to reduce because people can be accessing your site from anywhere in the world. This is more of a user experience thing. You can (1) add some kind of 'loading' image to show that something's processing, or you can (2) fake the prod

[jQuery] Re: Using Google's Code Repo

2009-02-27 Thread mkmanning
I've never experienced this myself. We have jQuery loading from the explicit Google URL (https://ajax.googleapis.com/ajax/libs/jquery/ 1.2.6/jquery.min.js) as opposed to the loader (although we're using that on other products) so far with no issues. We get 6 million+ pageviews/month. My guess wou

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread Gelegrodan
Hello! Thanks you your answer, but it seems like it didnt help! function pnrexists(a){ $.ajax({ async: true, url: '/inc/chkusr.php?q=p', type: 'POST', dataType: 'html', data: {'pnr': a}, timeou

[jQuery] Re: Problem in selectors

2009-02-27 Thread ricardobeat
It's hard to tell without seeing the HTML code. Works fine here: http://jquery.nodnod.net/cases/196 - ricardo On Feb 27, 2:02 pm, RandyJohnson wrote: > Davide... > > Did you ever get a response. > > I am having a similar problem with 1.3.2 in that I have multiple area > html statements and onl

[jQuery] Re: ajax() alternative to load() function?

2009-02-27 Thread James
Yes, make sure the dataType option is set to 'html' (which it should be by default if your response is HTML): http://docs.jquery.com/Ajax/jQuery.ajax#options $.ajax({ url: 'page.php', dataType: 'html', timeout: 5000, // 5 seconds success: function(html) { $("#myDiv

[jQuery] Re: $.post error on response

2009-02-27 Thread MorningZ
oops.. forgot to change one line CallParams.data = { imageid: image_id }; On Feb 27, 1:39 pm, MorningZ wrote: > instead of $.post, try this instead > > var CallParams = {}; > CallParams.type = "POST"; > CallParams.url = "your-page.php"; > CallParams.processData = true; > CallParams.data = para

[jQuery] Re: My birthday gift to the jQuery Community

2009-02-27 Thread Rick Faircloth
Nice, Sean! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Sean O Sent: Friday, February 27, 2009 1:20 PM To: jquery-en@googlegroups.com Subject: [jQuery] My birthday gift to the jQuery Community It's been a while since I crea

[jQuery] Re: $.post error on response

2009-02-27 Thread MorningZ
instead of $.post, try this instead var CallParams = {}; CallParams.type = "POST"; CallParams.url = "your-page.php"; CallParams.processData = true; CallParams.data = params; CallParams.dataType = "json"; CallParams.success = function(data) { // "data" is the result }; CallParams.error = funct

[jQuery] Re: function $.ajax return true/false ?

2009-02-27 Thread James
The issue here is that AJAX is asynchronous. The the moment you're checking pnrexists(ph), it'll execute the AJAX but nothing is returned "at that moment" (which means it is not-true, so the if-statement fails). Then a few milliseconds later, your AJAX response has returned, but the code is way pa

[jQuery] Please, help me convert this flash menu into a jQuery menu?

2009-02-27 Thread 123gotoandplay
Hi there, Could anyone get me started to convert this flash menu to a jquery menu? www.bldd.nl/jsproblems/convertToJQuery.html It's a dropdown menu with submenu's sliding in from the left. regards,

[jQuery] Re: FadeTo() On Table Row

2009-02-27 Thread Sir Rawlins
Thanks for the reply brian I appreciate it. I ended up not bothering with the fadeTo() and just set a class on the TR which in-turn styled the TD's with some opacity using CSS, this way I get the desired fade effect but without the nice animation, it'll do as a compromise until M$ pull their thum

[jQuery] Re: autocomplete and json

2009-02-27 Thread Jonny B
It seems there are a few undocumented features now in Autocomplete - see this demo: http://view.jquery.com/trunk/plugins/autocomplete/demo/json.html I've got mine (mostly) working now thanks to that (and thanks to zendog74 for the initial pointers ;)

[jQuery] Re: Remove doenst work on dynamically created li

2009-02-27 Thread etnas
Hi Dimby, your problem is very easy; you are creating a new element, a new '', but it does not have an event attached. It's a beginner mistake. You only need to change one line: $('a.remove').live ('click', function() { var id= $(this).attr('id'); $('li#'+id).fadeOut('fast', func

[jQuery] Re: Beginner question: AJAX doesn't work

2009-02-27 Thread etnas
Hi; you has a lot of sintaxis errors; I have written your code again and now works fine: http://www.w3.org/1999/xhtml";> jquery $(document).ready(function(){ $("#newsletteranmeldung").submit(function(){ var email_result = $("#email").val(); var action_result

[jQuery] $.post error on response

2009-02-27 Thread Dan
I'm using jquery 1.3.2 and trying to send some data using $.post to a PHP script. For some reason the response is not being returned and Firebug is reporting an error on line 3633 of jquery. function check_out_image(image_id) { $.post('ajax/checkout_image', {imageid: image_id} ); } A very si

[jQuery] jQuery tabs problem with language

2009-02-27 Thread hitautodestruct
Hi, I have a problem implementing jQuery tabs using hebrew content in the li and div elements. I get the error "jQuery UI Tabs: Mismatching fragment identifier" when clicking on the tabs. Everything works perfect when the text is english but when I have hebrew in it it returns the above error.

[jQuery] New plugin: thumbnail hover popup

2009-02-27 Thread Kyle Peterson
New plugin that shows a larger image when you hover over a thumbnail. Works great in greasemonkey on different sites too. http://codebit.wordpress.com/2009/02/27/jquery-thumbnail-popup-plugin-for-greasemonkey/

[jQuery] Re: Beginner question: AJAX doesn't work

2009-02-27 Thread carlos benitez fil
Hi; you has a lot of sintaxis errors; I have written your code again and now works fine: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> jquery $(document).ready(function(){ $("#newsletteranmeldung").submit(function(){ var ema

[jQuery] Re: Waiting for 'each' to finish

2009-02-27 Thread ricardobeat
That's because the animations don't wait. Add the css() to the last element's animation callback function nexthour(object, start, stop) { var $guide = $("#guide"), $divs = $('div.bla'), ln = divs.length; $guide.css('height', $guide.height()); $divs.each(function(index) { $(thi

[jQuery] Trouble with $(this) in custom plugin

2009-02-27 Thread Chandler
Hi all. I've started creating a small plugin for an internal project at work however I'm having a bit of trouble. This is my code, (function($){ $.fn.fsGallery = { next: function() { var obj = $(this); if($('ul li.active', o

[jQuery] Re: Remove doenst work on dynamically created li

2009-02-27 Thread carlos benitez fil
Hi Dimby, your problem is very easy; you are creating a new element, a new '', but it does not have an event attached. It's a beginner mistake. You only need to change one line: $('a.remove').live ('click', function() { var id= $(this).attr('id'); $('li#'+id).fadeOut('fast', fu

[jQuery] multiple event helpers

2009-02-27 Thread famousinja...@gmail.com
hey, how do i combine to event helpers together? for example, i have an input box that will change the size of a div height. i want the event to happen on mouseout and on blur. do i have to write the code out twice, once with mouseout as the event and once with blur, or is there a way to stick

[jQuery] Newbie clueTip Plugin style removal

2009-02-27 Thread alanfluff
Hi cleverer people than me... Please can someone point me in the right direction to use this brilliant plugin but have it add no stlye so I can add style to an unstyled chunk of markup? I'm calling the plugin with $('.linkToFaq a').cluetip({splitTitle: '|', width: '100px', cluetipClass: 'fdFaq'

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
Works with out the select options as well. :) On Feb 27, 10:19 am, Jsudesign wrote: > Thanks Ricardo, > > I got it to work :D > Here's the final code. > > // JS /// > > $(document).ready(function(){ >   $("select").empty().append( >        new Option(0), >        

[jQuery] My birthday gift to the jQuery Community

2009-02-27 Thread Sean O
It's been a while since I created anything publicly fun - kids have that effect on you :) So I figured I'd offer up my birthday gift to you: F3: Fast Flickr Findr http://www.sean-o.com/f3 Find Flickr photos fast. Built using jQuery, developed rapidly on Remy Sharp's JSBin. Enjoy. SEAN O _

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
Okay - I have figured it out. I needed to reformat the first JSON query into a $.ajax() query, and then ONLY call the second $.getJSON() query on an AJAX.success() method. Thanks for the pointers On Feb 27, 9:53 am, tatlar wrote: > I found this Async plugin that I think might do the > trick

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
Thanks Ricardo, I got it to work :D Here's the final code. // JS /// $(document).ready(function(){ $("select").empty().append( new Option(0), new Option(1), new Option(2), new Option(3) ); $(":button").click(function(){

[jQuery] Re: :not selector

2009-02-27 Thread Mauricio (Maujor) Samy Silva
Hi Pedro, It is hard to figure out what you are trying to select without a look on the HTML markup. What does you mean with "half of the elements i get with"? It depends upon the markup! In nth-child(n) is n constant or inside a loop? How about a sample of your markup and information about wh

[jQuery] Re: DSRTE or Alternative ?

2009-02-27 Thread brian
It's a client-side application. The included PHP script is merely an example for image uploads. If you need to use this on a PHP4 site, you'll need to re-write the script or write your own. And you should really consider upgrading PHP, as support for 4.x has long been discontinued. On Fri, Feb 2

[jQuery] function $.ajax return true/false ?

2009-02-27 Thread Gelegrodan
Hello I have the following code: function pnrexists(a){ $.ajax({ url: '/inc/chkusr.php?q=p', type: 'POST', dataType: 'html', data: {'pnr': a}, timeout: 2000, success: function(data) {

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
I found this Async plugin that I think might do the trick: http://plugins.jquery.com/project/async On Feb 27, 9:18 am, tatlar wrote: > Huh. I am still getting zero values added to the myStations object. I > think my syntax for adding to an object is wrong. Any suggestions > anyone? > > On Feb 27

[jQuery] Re: fastest way to move dom nodes?

2009-02-27 Thread Jack Killpatrick
Thanks. I ended up largely solving my problem via what turned out to be a related issue having to do with a selector I was using to get the node to append to (there were many new nodes created on the fly for appending into). I was using classes 3 deep for the selector and changed my code so tha

[jQuery] Re: click event and window.location problem in safari

2009-02-27 Thread brian
I don't know what the problem is or how to fix it but I'm wondering why you need this onclick event at all. If you want the link to fill the entire div you might be able to just give the anchor display: block. On Fri, Feb 27, 2009 at 9:49 AM, introvert wrote: > > Hello > > I have a simple jquery

[jQuery] Using Google's Code Repo

2009-02-27 Thread Issac Kelly
I just started using google's code repo to call JQuery on my sites. It was recommended by a number of people, including John Resig (on TWiT); I'm having an issue though, and I'm wondering if it's just me. about one in a hundred times it just doesn't load at all; and on some configurations, it was

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
Huh. I am still getting zero values added to the myStations object. I think my syntax for adding to an object is wrong. Any suggestions anyone? On Feb 27, 8:43 am, tatlar wrote: > Thanks Stephan - I will take a look at your suggestion. Thanks for the > heads up about the return statement - PHP f

[jQuery] ajax() alternative to load() function?

2009-02-27 Thread Adam
Hi, Is there a way to use the ajax() function and insert html into the DOM similar to the load() function? I need to be able to catch errors and use a timeout, but replicate what load() does. Thanks.

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread KrushRadio - Doc
I see what you mean... I've used something like that before, where i have one page do the httpreferr, and then i load that php page as xml... I think I built a couple RSS Feeds that way... Let me try that, thanks for the reminding. I got more stuff to work on now. Thanks ~Doc On Feb 27, 10:31

[jQuery] Re: alternate color row starting from a point

2009-02-27 Thread Magritte
Ok, it work, but I another trouble. the code now become: $('tr:not(.className):odd').css({'background':'red'}); because I would like to color row alternatively. The problem is that I would like that the alternativy start alway with red.(first '' after every '' red, then 'white', then red,)

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread KrushRadio - Doc
>>> no, I have a yp server that is used by a bunch of radio stations >>> (yp.krushradio.com) >>> the website will be on either ww2.krushradio.com or >>> www.krushradio.com... not sure yet. >>> I see what you mean about cross domain scripting.. I totally forgot >>> abo

[jQuery] Re: Ajax capability question...

2009-02-27 Thread theinternot
Well, its written in Coldfusion using an ajax framwork called 'ajaxCFC' whic uses DWRUtils. The basic flow is: onClick event triggers ajax function call to a javascript function which then calls a Coldfusion component (sort of like an object) 'method' that does a CFHTTP (http get) request for t

[jQuery] Re: Problem in selectors

2009-02-27 Thread RandyJohnson
Davide... Did you ever get a response. I am having a similar problem with 1.3.2 in that I have multiple area html statements and only one is being returned when I issue the following jquery statement: $('area').hover (popUpDisplay,popUpRemove)... Does anybody know what changed between 1.2.6 an

  1   2   >