[jQuery] Re: removeAttr for rowspan

2008-05-29 Thread snobo
Huh, interesting! Indeed, specifying an attribute in lowercase makes it work. All in all, it seems like a inconsistency to me, that attr() method and FF don't care about the case, but removeAttr() and IE do. On May 29, 12:31 am, kape [EMAIL PROTECTED] wrote: I encountered the same problem when

[jQuery] Two little question css/jquery related

2008-05-29 Thread Giovanni Battista Lenoci
Hi, I have 2 little questions: 1. In a piece of code I wrote: $div = $('div class=elementContainer/ div').appendTo($container); $a = $('a/a').appendTo($div); $a.css({'background-image':'url('+img.url+');'}) $a.addClass('element'); $a.attr({'rel':img.basename});

[jQuery] Re: jQGrid Sample in Classic ASP

2008-05-29 Thread Tony
I never work with ASP, but if you known a little PHP you have an Idea how to do that with ASP. If you have success with this it will be good to send me example, so that other users will be happy with this Regards Tony On May 29, 5:03 am, Nimrod [EMAIL PROTECTED] wrote: Hi, I found jQGrid

[jQuery] Re: Jquery browse dialog

2008-05-29 Thread Scott Sauyet
Fred wrote: Hi guys, I have to open a browse dialog window that allows selection of multiple files, basically for selection of multiple files to upload. Any ideas? I believe You can't override the browser's file upload dialog, which only allows one file at a time unless you use a browser

[jQuery] Re: Opera IE Issue

2008-05-29 Thread Wizzud
Is fusionSlider.panelPositions an array or a string? If it's an array, then using indexOf() on it is wrong. If it's a string then I can't work out what it that statement is intended to achieve ... but indexOf() should take a string as its input, not a number! On May 29, 2:41 am, Keri Henare

[jQuery] Re: Do something, ONLY if parent has children

2008-05-29 Thread Wizzud
Can you be a bit more explicit about what it is that you want to do? eg. hide H1 where next element does not have class 'fred' or hide DIV, H1 and H6 where first child is not (DIV.dynamo) or hide P, H1 thru H6 where next element is not (P.kiev) or is (P.kiev having a child of A.hideme)

[jQuery] Re: What is the white area area behind text using sIFR on jQuery Media Plugin?

2008-05-29 Thread zeckdude
malsup wrote: You can control the background color using the 'bgColor' option. I just updated the sIFR demo page to show how to do this and also how to control the font size using the height option: http://www.malsup.com/jquery/media/sifr.html?v2 Mike I was able to change

[jQuery] Hiding an li causes list to shift over.

2008-05-29 Thread Pickledegg
Heres my page: http://tinyurl.com/65ffwr Click on the FAQ Prices buttons to see the functionality and the problem. I'm using jquery to hide the 'Go Back' button until the other buttons are clicked. When they are, the 'Go Back' Button fades into view. See the problem? When the the 'Go Back'

[jQuery] [tooltip] attribute jQuery not injected.

2008-05-29 Thread Deza
jQuery.ToolTip Great Job. I have an application where I make a code injection of many Html elements dynamically. I know that for each Html element the jQuery.tooltip library injects this attribute: jQuery + Date and the value is an unique identify. My problem is that some times (I don't know

[jQuery] Re: mark a td when left mouse button is pressed

2008-05-29 Thread Sid
Use addEventListener In IE this is attachEvent if (td.addEventListener){ td.addEventListener('mouseDown', changeClass, true); } else if (td.attachEvent){ td.attachEvent('onMouseDown', changeClass); } function changeClass() { $(this).css('asds','asdasdsa'); } On May 28, 7:50 pm, melwood

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-05-29 Thread mojock
I'm having the same exact problem. 1.2.3 works perfectly fine, but 1.2.5/.6 does not work - specifically with jqmodal. On May 28, 5:49 am, M_Freeman [EMAIL PROTECTED] wrote: Once I upgraded to 1.2.5 and 1.2.6 there seems t be a problem with the way that jQuery sets the opacity filter in IE,

[jQuery] Customized version?

2008-05-29 Thread [EMAIL PROTECTED]
Hi, I like jQuery a lot since I started working with it some months ago and I am thrilled when I see jQuery UI. But there is one thing that I don't like: jQuery ships code that I don't need and that users have to download even if it is not used. I am talking specifically about the ajax code in

[jQuery] Re: Opera IE Issue

2008-05-29 Thread Keri Henare
Figured out the problem. Array.indexOf is not supported by Opera 9.27 or IE. On May 29, 1:41 pm, Keri Henare [EMAIL PROTECTED] wrote: Opera 9.27 throws up this error: Event thread: click Error: name: TypeError message: Statement on line 80: Type mismatch (usually a non-object value used

[jQuery] Cloning Fieldsets

2008-05-29 Thread dickiedyce
Hi, I'm a recent convert to jQuery, and so far, so great! I'm slowly moving through my home rolled javascript and migrating it across. One script which I'm desperate to fix is a generic 'addSubform' routine which I use to create a new child form (say address form) for a parent form (say

[jQuery] Re: load() function in synchronous manner.

2008-05-29 Thread Karl Rudd
$.load() using $.ajax() at it's core so yes. It's a really good idea to check the documentation and the source code when you have questions like this. Karl Rudd On Thu, May 29, 2008 at 8:13 PM, Arun Kumar [EMAIL PROTECTED] wrote: Will these settings gets applied to load() function also? On

[jQuery] Re: :contains ... troubling behavior

2008-05-29 Thread Eugene Van den Bulke
a screen shot to illustrate my point ... if I can venture an non-expert diagnostic, it seems that in the second case jQuery considers that the html in the contains() statement is the context of the statement and not the html document ... EuGeNe -- http://www.3kwa.com inline: contains.png

[jQuery] Re: Jquery browse dialog

2008-05-29 Thread Bart Hermans
You can't do that with the file input control. You'll have to use Java or ActiveX. On Thu, May 29, 2008 at 12:05 AM, Fred [EMAIL PROTECTED] wrote: Hi guys, I have to open a browse dialog window that allows selection of multiple files, basically for selection of multiple files to upload. Any

[jQuery] Problem when trying to copy the home page design of Msn Video site

2008-05-29 Thread Jiawei
This is the msn video site: http://video.msn.com/ On the home page, we can see some small preview pictures of videos.When we move the cursor over it, the picture will disappear, and some description text about the video will show up and replace the area of the original picture. When we move the

[jQuery] global toggle function

2008-05-29 Thread roxstyle
here is a prototype i am putting together. http://www.roxstyle.com/projects/blssi/cms/user-tools/user-contract-details.html on this page there is one link system using toggle, for the linkAdd More Existing Accounts and this works, but on pages where the system is used more than once, such as:

[jQuery] Re: Two little question css/jquery related

2008-05-29 Thread Tony
Hi, There is an extra semicolon at end of css's value: $a.css({'background-image':'url('+img.url+');'}) -Tony On May 29, 15:23 pm, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi, I have 2 little questions: 1. In a piece of code I wrote:       $div = $('div

[jQuery] Re: jquery compatibility test 01

2008-05-29 Thread arden liu
Thanks for your suggestion. Now, I reduce my code as the following. But it still does not work under Opera. Maybe I have to use my own javascript instead of jquery, or I will try to fix this problem of jquery. === html head titleInsert title here/title script

[jQuery] Cloning Fieldsets

2008-05-29 Thread dickiedyce
Err hello? Managed to get it working ... kind of but out of interest wanted to know if I was missing some jQuery idioms within the .each() function? Any thoughts gratefully received. R. ( Noobie ) function addSubform(childtype) { subformCount++; var thisType = childtype; var

[jQuery] Cloning Fieldsets

2008-05-29 Thread Richard Dyce
Hi, I'm a recent convert to jQuery, and so far, so great! I'm slowly moving through my home rolled javascript and migrating it across. One script which I'm desperate to fix is a generic 'addSubform' routine which I use to create a new child form (say address form) for a parent form (say

[jQuery] Use jquery autocomplete plugin with Multiple Textboxes (Textboxes are generated using Javascript)

2008-05-29 Thread Ashlak
Hello, I have this code to generate Textboxes at the click of a Button - - html script function addRowToTable() { var tbl = document.getElementById('tblSample'); var lastRow = tbl.rows.length; // if

[jQuery] disable or replace plugin

2008-05-29 Thread Lampa
Hello, i've own plugin. My code: $('#jXInput').tellMe('rpc.php', {noCache: true, param: 'rType=zumrGroup=1', dataProcessing: function(d, sD) { $('#jXInput').parents('tr').eq(0).children().each(fillIt); function fillIt(index, el) { if (!index)

[jQuery] Re: :contains ... troubling behavior

2008-05-29 Thread Eugene Van den Bulke
On Thu, May 29, 2008 at 2:45 AM, Dave Methvin [EMAIL PROTECTED] wrote: it does the job but I still find the behavior unexpected :P How could the documentation be changed to clarify the function so that you would expect its behavior? http://docs.jquery.com/Selectors/contains#text The doc

[jQuery] Re: load() function in synchronous manner.

2008-05-29 Thread Arun Kumar
Will these settings gets applied to load() function also? On May 28, 3:21 am, Karl Rudd [EMAIL PROTECTED] wrote: Woops sorry, hit Send too soon. http://docs.jquery.com/Ajax/jQuery.ajaxSetup And the options are defined here, in the Options tab:

[jQuery] Re: Display loading image while alternate image loads.

2008-05-29 Thread Gordon
There's a simple way to have a loading image without any javascript at all. Simply use CSS. Either give the image in question a background image which serves as your loading image (I've not tried this out so am not sure it would work), or if that approach doesn't work, wrap your image in

[jQuery] Re: Jquery browse dialog

2008-05-29 Thread Mickster
Hi, maybe you can use swfupload? http://demo.swfupload.org/simpledemo/index.php Hit the browse button and use ctrl/shift to choose multiple files... There are more demos available too... Good luck! Regards, Mickster On May 29, 12:05 am, Fred [EMAIL PROTECTED] wrote: Hi guys, I have to open a

[jQuery] Background-position without flickering (need Preloading)

2008-05-29 Thread Faenol
Hi, At first I'm very sorry for my english. If any sentence or word is a little bit confusing, just ignore it. The Problem: I have to refresh a background-image of a div element every x seconds. It's a image which is generated of a PHP Script, so the image changes. Unfortunately there were

[jQuery] Re: Animate() background colours

2008-05-29 Thread fambi
Thanks for that. I've got it working now. One question, though, and this applies to all animations... how can the animation be made smoother? I've seen pretty slick animations in other libraries and wondering how jquery can be tweaked to make the animations smoother. Any ideas? Alexandre

[jQuery] ajaxForm not working

2008-05-29 Thread eid
Hi, I'm trying to do a register script. It works fine, but now I try to AJAX it up and it breaks. Here's register.php - the page with the form and the js http://pastebin.com/m696999f7 and register-process.php which handles the data and was supposed to return something which I guess it doesn't.

[jQuery] Re: Animate() background colours

2008-05-29 Thread fambi
Thanks for that. I've got it working now. One question, though, and this applies to all animations... how can the animation be made smoother? I've seen pretty slick animations in other libraries and wondering how jquery can be tweaked to make the animations smoother. Any ideas? On May 29,

[jQuery] Re: ajaxForm not working

2008-05-29 Thread malsup
Here's register.php - the page with the form and the js http://pastebin.com/m696999f7 and register-process.php which handles the data and was supposed to return something which I guess it doesn't. Without AJAX it echoed the responses just fine http://pastebin.com/m35017afe the #loaded

[jQuery] Re: Opacity Problems in IE 6 and IE 7 with 1.2.5 and 1.2.6

2008-05-29 Thread Tony
jqModal does not work with 1.2.5 (6) due to this line of code in jqModal z=(/^\d+$/.test(h.w.css('z-index')))?h.w.css('z-index'):c.zIndex, In previous versions of jQuery the line (/^\d+$/.test(h.w.css('z-index'))) return undefined in IE6/IE7 (i.e. false) In 1.2.5 this return 0 (true) which is

[jQuery] Re: What is the white area area behind text using sIFR on jQuery Media Plugin?

2008-05-29 Thread malsup
I was able to change the background color, but I was not able to make it transparent. When I enter options.bgColor = 'transparent', it creates a green background behind the sifr text. I have not specified that green anywhere within the code. Can you please tell me how to make the background

[jQuery] Similar plugin on jQuery

2008-05-29 Thread bragovo
I search plugin for jQuery whis similar functional I'm looking for the plugin for jQuery with similar functionality as jcp.com (http://www3.jcpenney.com/jcp/ProductImageview.aspx? IT=GID=13b85b6MD=RNGRT=SIZE=FSA=TVT=ZVI=0900631b814acb62M.tifVAS=AV=THM=FRGB=AS=AST=BID=VID=RU=http

[jQuery] Re: ajaxForm not working

2008-05-29 Thread eid
Thank you for the response, but that doesn't seem to have any effect at all. On 29 Maj, 14:02, malsup [EMAIL PROTECTED] wrote: Add this to the top of register-process.php: ?php header('Content-type: text/xml'); ?

[jQuery] Re: ajaxForm not working

2008-05-29 Thread malsup
On May 29, 8:22 am, eid [EMAIL PROTECTED] wrote: Thank you for the response, but that doesn't seem to have any effect at all. On 29 Maj, 14:02, malsup [EMAIL PROTECTED] wrote: Add this to the top of register-process.php: ?php header('Content-type: text/xml'); ? What exactly do you

[jQuery] Select IE7

2008-05-29 Thread olg
Hi folks, I use JQuery and JQuery ui for my web application but some troubles have come with select html tag since i use IE 7 to browse it. It's not possible to select an option with mouse. it works only if the focus is out of select area. However, It's possible to select an option with

[jQuery] jQuery Corner problem

2008-05-29 Thread Bart Hermans
I'm trying to use the corner plugin (http://www.malsup.com/jquery/corner) to create rounded corners on a div. First I display a div that covers the whole page and has a black, transparent background. Then I show another div, white background, centered on the screen. So it's a kind of popup. The

[jQuery] SELECT with IE7

2008-05-29 Thread olg
Hi Folks, I use JQuery anf JQuery UI plugin for my web application. Some troubles with select html tag have come since i use IE 7 to browse it. It's not possible to select any option with mouse. It's works fine with keyboard. It's only possible with mouse when the focus is out of select area

[jQuery] Populate plugin updated (plugin to fill forms using JSON)

2008-05-29 Thread Dave Stewart
Hi Everyone, I've finally updated my Populate plugin, which populates a form using JSON data. This plugin supports full PHP hierarchical naming and deep JSON data structures, as well as checkbox arrays and other non-standard UI controls. The plugin can be used as part of your AJAX toolkit, or

[jQuery] Highlight plugin updated (highlight elements and related elements as you interact with them)

2008-05-29 Thread Dave Stewart
Hi Everyone, I've recently updated my Highlight plugin, which is designed to increases usability by highlighting elements as you interact with the page. Its primary use is for forms, but it can also be used for tables, lists, or any element you specify. Examples uses: * Form-filling can be

[jQuery] Re: Two little question css/jquery related

2008-05-29 Thread Giovanni Battista Lenoci
Tony ha scritto: Hi, There is an extra semicolon at end of css's value: $a.css({'background-image':'url('+img.url+');'}) First question fired! :-) Thank you. -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482

[jQuery] flashembed plugin

2008-05-29 Thread hcvitto
Has anyone ever used this flash embed plugin? http://plugins.jquery.com/project/flashembed Do you know how to pass it some flashvars? I read the documentation but couldn't find anything clear.. Thanks vitto

[jQuery] Re: ajaxForm not working

2008-05-29 Thread eid
Oh, right. I haven't worked with xml before so I was thinking that if I injected it into a div it would just show it as regular text. Guess not. Thanks a lot man, I got it working now :-) On 29 Maj, 14:45, malsup [EMAIL PROTECTED] wrote: What exactly do you want to have happen? You're using

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread malsup
First I display a div that covers the whole page and has a black, transparent background. Then I show another div, white background, centered on the screen. So it's a kind of popup. The problem is that when I just use $(...).corner(), nothing happens. But if I color the corners with

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread Bart Hermans
Hi Mike, Thanks for your quick reply. I can see that your example works, but there are some problems with it. The background div has to be positioned absolute, because it overlays the actual site beneath it. If you do that with your example, the foreground div will also be transparent. So I

[jQuery] Re: Safari unable to get width and height of image.

2008-05-29 Thread rbjaanes
Yes. :) On May 28, 7:19 pm, Ariel Flesler [EMAIL PROTECTED] wrote: You're calling the methods inside a document.ready, right ? -- Ariel Fleslerhttp://flesler.blogspot.com On 28 mayo, 13:47, rbjaanes [EMAIL PROTECTED] wrote: Seems as if Safari doesn't know the required info before the

[jQuery] Re: global toggle function

2008-05-29 Thread Scott Sauyet
roxstyle wrote: http://www.roxstyle.com/projects/blssi/cms/user-tools/user-contract-details.html on this page there is one link system using toggle, for the linkAdd More Existing Accounts and this works, but on pages where the system is used more than once, such as:

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread malsup
The background div has to be positioned absolute, because it overlays the actual site beneath it. If you do that with your example, the foreground div will also be transparent. I see what you mean now. With the way your markup is structured there is no way for the corner plugin to figure

[jQuery] Re: Similar plugin on jQuery

2008-05-29 Thread Scott Sauyet
bragovo wrote: I'm looking for the plugin for jQuery with similar functionality as jcp.com (http://tinyurl.com/4scf8y) With Zoom and Drag Drop effect, and most importantly with dynamic loading part of large image. I don't know the state of this project:

[jQuery] Re: SELECT with IE7

2008-05-29 Thread olg
In fact, this problem occures when i use dialog function ( from jquery UI) with the aim of surrounding a form with a window. In this case, select an option from select area doesn't work with IE 7. Olivier On 29 mai, 14:43, olg [EMAIL PROTECTED] wrote: Hi Folks, I use JQuery anf JQuery UI

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread Bart Hermans
Yeah, but then the foreground div is still transparent. The website will 'shine' through. On Thu, May 29, 2008 at 4:44 PM, malsup [EMAIL PROTECTED] wrote: The background div has to be positioned absolute, because it overlays the actual site beneath it. If you do that with your example,

[jQuery] IE6 and blockUI Issue

2008-05-29 Thread Yas
Has anyone else experienced the following issue with blockUI and IE6? I am using: jQuery version 1.2.6 (05/24/2008) blockUI version 2.07 (05/17/2008) Below is a link to a SSCCE that should demonstrate the issue. http://myorangepeels.com/blockui/blockuidemo.html Try this: - Start with the

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread malsup
Yeah, but then the foreground div is still transparent. The website will 'shine' through. Not if you set your styles correctly.

[jQuery] Re: Similar plugin on jQuery

2008-05-29 Thread Josh Nathanson
Hang tight, I am coming out with a magnifier plugin in the next couple of days. It won't have the dragging stuff, but you'll be able to magnify a portion of an image. And it will have the ability to dynamically load the large image if desired. -- Josh - Original Message - From:

[jQuery] How To Get The Scroller Position?

2008-05-29 Thread webman
I'm trying to understand if the user is already at the bottom of the page (scroller is at the end). By doing so, if the user is already at the end of the page, I'll automatically load new content to the bottom. I looked at the jQuery dimensions plugin, but that doesn not to be the answer. Any

[jQuery] Re: jQuery Corner problem

2008-05-29 Thread Bart Hermans
I've already spent hours trying to get the styles right, so I've kind of given up. :) I found another solution (http://www.spiffycorners.com) and that seems to work correctly. I will definitely use the corners plugin for other div's on my site but just not for this one... :) Mike, thanks a lot for

[jQuery] Symantic Markup with Nice Accordion.. ..

2008-05-29 Thread Danjojo
I had the original demo from a popular site to get the Accordion menu to work... I work with a team and we have designers who will want to access the markup with css perfectly. So of course we want the markup like this: div class=demo-show2 ul li style=border-top: 1px solid black;

[jQuery] checkbox manipulation and toggle()

2008-05-29 Thread jquertil
Hello... short version: how do I exclude an element in my selector expression? long version: you know those checkboxes in windows where you can actuyally click the label to check the box? I'm recreating this with a toggle() like this: DIV id=CheckContainerINPUT type=checkbox id=Check/ Click

[jQuery] Re: checkbox manipulation and toggle()

2008-05-29 Thread jquertil
OK I tried my own anticipated solution after looking at some comment from The Man Himself, but didn't work. $(#CheckContainer:not(#Check)).toggle(...); --- does not work. stil can not click the checkbox :(

[jQuery] jEditable Used Many Times on a Page

2008-05-29 Thread Roscoe
So far I have really loved using jEditable for my website. So much so that I am(attempting) to use it to replace the normal form interface for a CakePHP site. What I'm trying to do is just show the user the normal webpage but if they want to edit anything they just click it (jEditable). The

[jQuery] Re: checkbox manipulation and toggle()

2008-05-29 Thread Bart Hermans
Actually, this is a standard implementation in html: use the label tag. On Thu, May 29, 2008 at 8:16 PM, jquertil [EMAIL PROTECTED] wrote: Hello... short version: how do I exclude an element in my selector expression? long version: you know those checkboxes in windows where you can

[jQuery] jEditable Used Many Times on a Page

2008-05-29 Thread Roscoe
So far I have really loved using jEditable for my website. So much so that I am(attempting) to use it to replace the normal form interface for a CakePHP site. What I'm trying to do is just show the user the normal webpage but if they want to edit anything they just click it (jEditable). The

[jQuery] element.attr() bug in jquery 1.2.6?

2008-05-29 Thread Phil Christensen
Hi all, I've run into a strange issue that I believe is a bug in jQuery 1.2.6. I've posted a ticket along with a test HTML file at: http://dev.jquery.com/ticket/2959 As far as I can tell, attr() is not properly updating the value of a form attribute, although prior versions had worked

[jQuery] Re: jQuery History Plugin

2008-05-29 Thread Klaus Hartl
I assume you're using UI Tabs? http://docs.jquery.com/UI/Tabs#Does_UI_Tabs_support_back_button_and_bookmarking_of_tabs.3F --Klaus On May 28, 6:11 pm, timothytoe [EMAIL PROTECTED] wrote: Ajax History doesn't seem to be working for me. I'm including the file (which I've thrown into my

[jQuery] Re: flashembed plugin

2008-05-29 Thread Sam Sherlock
how about http://jquery.lukelutman.com/plugins/flash/ full examples provided 2008/5/29 hcvitto [EMAIL PROTECTED]: Has anyone ever used this flash embed plugin? http://plugins.jquery.com/project/flashembed Do you know how to pass it some flashvars? I read the documentation but couldn't

[jQuery] Re: IE animation issues

2008-05-29 Thread bgthomson
Hi PeterAce and hagalaz, Many thanks for your replies and apologies for not replying sooner - this page had slipped out of my mind. The trouble with my instant gratification generation. Thank you PeterAce for that suggestion. It didn't fix the flickering per se, but it did remove some extraneous

[jQuery] Re: checkbox manipulation and toggle()

2008-05-29 Thread steve_f
you need a label and set its for attribute to the checkbox On May 29, 7:21 pm, jquertil [EMAIL PROTECTED] wrote: OK I tried my own anticipated solution after looking at some comment from The Man Himself, but didn't work. $(#CheckContainer:not(#Check)).toggle(...); --- does not work. stil

[jQuery] Re: IE6 and blockUI Issue

2008-05-29 Thread malsup
Has anyone else experienced the following issue with blockUI and IE6? I am using: jQuery version 1.2.6 (05/24/2008) blockUI version 2.07 (05/17/2008) Below is a link to a SSCCE that should demonstrate the issue. http://myorangepeels.com/blockui/blockuidemo.html I see what you mean.

[jQuery] Re: element.attr() bug in jquery 1.2.6?

2008-05-29 Thread John Resig
I'm confused - you're getting and modifying the onclick attribute? That seems... strange. --John On Thu, May 29, 2008 at 7:48 PM, Phil Christensen [EMAIL PROTECTED] wrote: Hi all, I've run into a strange issue that I believe is a bug in jQuery 1.2.6. I've posted a ticket along with a test

[jQuery] Re: Load specific id on click

2008-05-29 Thread IschaGast
After some searching I found the solution: $('#content_main div.weblog_archive li a').livequery('click', function(event) { $('div.article_ajax').load($(this).attr(href) + ' div.article'); event.preventDefault(); }); On May 28, 9:34 pm, IschaGast [EMAIL PROTECTED] wrote: At the

[jQuery] Making a hrefs and using click on them

2008-05-29 Thread Paul Peelen
Hi, I am a newby to jquery, and am strugeling with an issue. In my code below, I get information from an php page which is returning xml. I am making links in a olli of what the php page return. But I want to catch the call from the a href I make when the user clicks on the link. How can I do

[jQuery] Stop $.ajax() from clearing the page

2008-05-29 Thread eid
Hi :-) My script: http://pastebin.com/m2b0341e5 I have this form, when I submit it, the php script runs and returns some JSON. The problem is that I want to display the errors on the page with the form, without it clearing any fields, however, whenever the handleResponse function is done it

[jQuery] trouble passing href

2008-05-29 Thread Kierhon
Hi all, new to JQ. I'm trying to pass the href from the a tag to the ajax load function. I believe i've selected the child properly but for some reason it's not pulling in the href. Any help is greatly appreciated! site: new-age-design.com code: ?php include('includes/header.php'); ? div

[jQuery] Re: element.attr() bug in jquery 1.2.6?

2008-05-29 Thread Ariel Flesler
Copied from the ticket itself: The patch about should modify attr() so that it supports this situation. It won't be applied for now for 2 reasons: 1- The demo you showed doesn't work cross browser. As far as I tested, IE doesn't fire handlers set as strings with javascript. So there's no point

[jQuery] Re: jQuery History Plugin

2008-05-29 Thread timothytoe
Yes. Oh well. Where should I watch for updates? Will there be an update of history to accommodate UI Tabs? Or is it more likely that UI Tabs will incorporate a history feature? On May 29, 12:06 pm, Klaus Hartl [EMAIL PROTECTED] wrote: I assume you're using UI Tabs?

[jQuery] Re: IE6 and blockUI Issue

2008-05-29 Thread malsup
Thanks in advance to any who might have a solution. The solution is to use standards mode on your page, not quirksmode. So add this to the top of your page: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/ TR/html4/strict.dtd Also note that besides being in quirksmode, your

[jQuery] Re: Convert special characters

2008-05-29 Thread Julien de Prabère
On 22 mai, 19:19, hubbs [EMAIL PROTECTED] wrote: Well, I checked, and our website is using iso-8859-1.  I see that this is a subset of utf8.  Is it still possible to have js correctly uncode the characters? Yes but PHP work with the subset and do not work with utf-8 ! It is very important

[jQuery] Re: trouble passing href

2008-05-29 Thread eid
try getAttribute('href') On 30 Maj, 00:46, Kierhon [EMAIL PROTECTED] wrote: Hi all, new to JQ. I'm trying to pass the href from the a tag to the ajax load function. I believe i've selected the child properly but for some reason it's not pulling in the href. Any help is greatly appreciated!

[jQuery] Hover Effects

2008-05-29 Thread Mason
I was browsing the a href=http://dragoninteractive.com;Dragon Interactive/a website. When you hover over certain buttons, they produce a gradient effect where the sprite image slowly appears. How can I achieve this effect? Thanks, Mason

[jQuery] Re: jQuery Form Plugin target confusion

2008-05-29 Thread Aree
Hey Lasthaai, I suffered the same issue and realised what was going on. Given that $ (this) is bound back to this function in which it currently resides, affectively causes an infinite loop. Here is a way around this issue, while still using the jquery forum plugin: $(function() { for (var