[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
IE cannot animate the opacity of a png with alpha transparency and there is no solution to this. pmni wrote: Hi. I'm building a website, and use your framework to hide/show a div. This work, but in IE when click to hide/show the div, the background became black, instead to maintaine the image

[jQuery] Re: How to ignore parse errors using $.get

2009-08-18 Thread fredrik
You can use try catch, ie. try{ $.get('http://www.example.com/',function(response){ var someText = $(response).find('#myDiv').text(); alert('success'); }); }catch(err){ //put code to handle error } ..fredrik On Aug 18, 6:34 am, nick wrote: > The page im loading with $.get has a syntax err

[jQuery] Re: ajaxSubmit disabled fields using Forms plugin

2009-08-18 Thread fredrik
Can't you use $(form).serialize(); and add that as you data in ajaxSubmit? ..fredrik On Aug 16, 4:26 pm, "nickfrancesch...@gmail.com" wrote: > the HTML spec says that disabled fields aren't submitted during post- > back... but I want them to be submitted with ajaxSubmit using the > Forms plugin

[jQuery] Re: ajaxSubmit disabled fields using Forms plugin

2009-08-18 Thread anurag pal
Hi, For this you have to get the value of input then assign it so that you can submit the value of disabled input. $('#ID').attr('txtInputBox'); Regards, Anurag On Sun, Aug 16, 2009 at 7:56 PM, nickfrancesch...@gmail.com < nickfrancesch...@gmail.com> wrote: > > the HTML spec says that disable

[jQuery] How to refresh a single div with the data using .ajax

2009-08-18 Thread ghost2008
Hello there, I am not sure, if this works. I make a function call with the ajax option of jquery: $.ajax({ type: "POST", url: "some.php", data: "name=test", success: function(data){ $("#div").html(dat

[jQuery] jquery or jquery UI error?

2009-08-18 Thread Met00 - Met00Cigar
per the jquery UI documentation the line below should return the index of the open tab var selected = $('.selector').tabs('option', 'selected'); When I access the data using that line in the error console I get F is undefined jquery-1.3.2.min.js - line 12 using http://jqueryui.com/latest/ui

[jQuery] Re: Hide function in IE

2009-08-18 Thread pmni
Thank you for the explain. On 18 Ago, 08:58, Liam Potter wrote: > IE cannot animate the opacity of a png with alpha transparency and there > is no solution to this. > > > > pmni wrote: > > Hi. > > I'm building a website, and use your framework to hide/show a div. > > This work, but in IE when cl

[jQuery] Re: best table plugin for large tables?

2009-08-18 Thread Julijan Andjelic
I've just created one yesterday, check it out here: http://code.google.com/p/spager/

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread anurag pal
Hi, Just implement the falg so that specific data will show into the div. For Example: $.ajax({ type: "POST", url: "some.php?ajx=1", data: "name=test", success: function(data){ $("#div").html(data);

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T & T NV)
By IE, I think he means IE6. I haven't tested this, but I think IE7 and up can do this fine, as long as you make sure you're applying any png hacks you're using to IE6 only with conditional comments. I could be wrong on this, though. Jonathan pmni wrote: Thank you for the explain. On 18 A

[jQuery] Re: Right-To-Left Menu

2009-08-18 Thread Charlie
in the css change floats of block elements and absolute positions of sub containers mahdiit wrote: It is possible to show menus from left to right in Right to Left, For example menus open in left side of Items.

[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
Nope, all versions of IE cannot animate the opacity of a PNG without the "black artifact", regardless of any hacks that are applied. It's really quite annoying. Jonathan Vanherpe (T & T NV) wrote: By IE, I think he means IE6. I haven't tested this, but I think IE7 and up can do this fine,

[jQuery] Re: Manipulate href

2009-08-18 Thread Miloš Rašić
You need the each() method because you are modifying each href to a new value that depends on an old value. In order to do this, you need to somehow retrieve the old value and for this you need the $(this) pointer which is only available in the context of methods like each(). 2009/8/17 knal : > >

[jQuery] Re: Manipulate href

2009-08-18 Thread Liam Potter
you want to manipulate the string so, after doing what paul did. $('a').click(function() { var id = $(this).attr('href'); var orig = '/portfolio/category/' id.replace(orig, "#") } But I do not see what you are trying to achieve with this? anurag pal wrote:

[jQuery] Re: Manipulate href

2009-08-18 Thread anurag pal
Hi, Basically what I got from this query the initiator don't want to call full links again and again so I have write the which which he can concat and call the location so that it will hit to the particular page. Regards, Anurag Pal On Tue, Aug 18, 2009 at 4:03 PM, Liam Potter wrote: > > you wa

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
$.load() lets you get specific elements only  like this $.load ("some.php #div) I have not done this with a full $.ajax but since they are using same jQuery,  in your $.ajax try url: some.php #div ghost2008 wrote: Hello there, I am not sure, if this works. I make a function call with t

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Dhruva Sagar
You should then try to parse the 'data' and then get it from it.But in my opinion, you should add some additional post params to the post request, say such as {'data': ''#div'} and then in some.php you can conditionally only return the contents of the div you want instead of the complete 'data' Th

[jQuery] Re: Confused where to put superfish script

2009-08-18 Thread Charlie
menu will degrade without script to css only menu . You won't have   animations opening subs or delay closing them but css keeps all hovers working if you are using Joomla extension for superfish it inserts the code for you, along with noConflict since joomla uses mootools. without a link to

[jQuery] Re: best table plugin for large tables?

2009-08-18 Thread Charlie
take a  look at jqGrid AstroIvan wrote: I have approximately a 400-500 row table (2 of them) each with 12 columns of formatted content such as currency, percentage, name. I tried this with http://tablesorter.com but it can't seem to handle that much data. Does anyone have a good plugin fo

[jQuery] Re: jquery or jquery UI error?

2009-08-18 Thread Charlie
you shouldn't be pulling the scripts from jQuery site, use google AJAX library instead. Also looks like you are using the full UI script along with core and individual widget scripts try removing "http://jqueryui.com/latest/ui/ jquery-ui.js"> if that doesn't work try replacing all you

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T & T NV)
That sucks, I didn't know that. I was under the impression that they had fixed IE's png support with IE7, but I guess it shouldn't surprise me their 'fix' is buggy. Jonathan Liam Potter wrote: Nope, all versions of IE cannot animate the opacity of a PNG without the "black artifact", regar

[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
I'm not 100% sure, but the "fix" they used, seems to me to just be loading the png's into the "alpha image loader" natively, which is pretty damn poor if I'm correct. Jonathan Vanherpe (T & T NV) wrote: That sucks, I didn't know that. I was under the impression that they had fixed IE's png

[jQuery] Re: Interaction in tabs

2009-08-18 Thread Charlie
tabs has a getter to find the tab that is selected http://jqueryui.com/demos/tabs/#option-selected use that as the index number for the content container for the tab var selected = $('#tabs").tabs('option', 'selected'); $(".yourTabsContent").eq(selected).find(".column").length if you are u

[jQuery] Asp.net AJAX form

2009-08-18 Thread K1
Hi,all. I wanna create ajax form in asp.net that have loading image, how can I do this? loading image (gif animation) will show utill postback response. Thx K1

[jQuery] Improving jquery performance on this site..(stop stutter)

2009-08-18 Thread p...@scotche.gg
Hey group! I am near completion on a site I chose to use Jquery for rather than Flash for a client. While some flash is used as a background image, the content is HTML and Jquery for effects. The issue as i see is stuttering and not smooth jquery actions in sliding etc on page load. Is there a b

[jQuery] Re: Improving jquery performance on this site..(stop stutter)

2009-08-18 Thread Charlie
you might consider validating your pages http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fscotche.gg%2Fnewsu%2Fabout.php p...@scotche.gg wrote: Hey group! I am near completion on a site I chose to use Jquery for rather than Flash for a client. While some flash is used as a backgro

[jQuery] [validate]

2009-08-18 Thread L.Ours.POlaiR
system : JQuery : 1.3.1 Validate plugins 1.5.5 # problem : form validation with under chrome(test under chrome 3.x and chrome 4.0.201.1) the button value is not sent to POST or GET solution : change line 70

[jQuery] IE woes

2009-08-18 Thread quis
I have a page which works fine in Firefox and Safari on OS X and Chrome on Windows. The expected behaviour is that when you hover over one of the blue boxes an icon will appear to indicate whether or not the box is editable. If it is editable (pencil icon) then clicking it should bring up an over

[jQuery] Re: IE woes

2009-08-18 Thread quis
A link might have been helpful: http://quis.cc/bmxmusic/ On Aug 18, 1:36 pm, quis wrote: > I have a page which works fine in Firefox and Safari on OS X and > Chrome on Windows. > > The expected behaviour is that when you hover over one of the blue > boxes an icon will appear to indicate whether

[jQuery] Re: Asp.net AJAX form

2009-08-18 Thread MorningZ
Well, do you want to submit the form via AJAX or via postack it's one or the other, but you mention both On Aug 18, 5:44 am, K1 wrote: > Hi,all. > I wanna create ajax form in asp.net that have loading image, > how can I do this? > loading image  (gif animation) will show utill postback resp

[jQuery] Re: [validate]

2009-08-18 Thread Jörn Zaefferer
There is no gurantee that the form will actually be submitted after submitHandler is called. So the cleanup is necessary for future submits of the same form. Could you show your full code? I suspect the actual issue is elsewhere. Jörn On Tue, Aug 18, 2009 at 2:14 PM, L.Ours.POlaiR wrote: > > sy

[jQuery] Re: App like hangman

2009-08-18 Thread Boris Trivic
OK thanks for reply. Which function enables me to find out which div is puted on which? Exaple: div1 div2 div3 when I pul div 2 on div3, how i can find out which element is puted on div3 (div1 or div2)? On Aug 18, 2:18 pm, anurag pal wrote: > Hi, > > You can acheive this with Jquery

[jQuery] Re: Conflict between jquery and mootools

2009-08-18 Thread jqueryuser
Is not working, put the setting in the file but does not work on the site, the jquery.js I have on my server, but where can I download the prototype.js? Mootools.js may be the problem? because the version I have is not working and release more than one

[jQuery] Re: Conflict between jquery and mootools

2009-08-18 Thread Mohd.Tareq
use noconflict function http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/ On Tue, Aug 18, 2009 at 7:09 PM, jqueryuser wrote: > > Is not working, put the setting in the file but does not work on the > site, the jquery.js I have on my server, but wher

[jQuery] JQuery Cycle effects don't work in IE

2009-08-18 Thread theosoft
I have tried various things to get this to work in IE, and I'm not sure why it won't work. The shuffle effect works, but not properly. It works in all the other browsers just fine. I've uploaded the code to jsbin here: http://jsbin.com/icuko I need this solved by the end of the day tomorrow, so i

[jQuery] Re: [validate]

2009-08-18 Thread L.Ours.POlaiR
hi, In fact all work fine under, IE6, IE7, IE8, FF3.5, juste this problem under Chrome and Safari (same engine as Chrome) in which case form will not be sent ? - if all validate this sent - if one mismatch handler stop before hidden input created. here a sample to reproduced problem (don't for

[jQuery] Setting option with a variable as its value to selected

2009-08-18 Thread north
Hi, I'm trying set an option with a certain value to selected. I'm using this: $('#mySelect option[value="' + myValue + '"]').attr('selected', 'selected'); This has worked in another piece of code I wrote, but now IE 6 and 8 are throwing an error (in the debug bar). It's something similar to th

[jQuery] Re: [validate]

2009-08-18 Thread Jörn Zaefferer
Okay, that looks fine so far. Could you file a ticket here? http://plugins.jquery.com/node/add/project-issue/validate (needs login/registration); Please attach that testpage with the description. Thanks Jörn On Tue, Aug 18, 2009 at 4:11 PM, L.Ours.POlaiR wrote: > > hi, > > In fact all work fine

[jQuery] Re: Setting option with a variable as its value to selected

2009-08-18 Thread Giovanni Battista Lenoci
north ha scritto: $('#mySelect option[value="' + myValue + '"]').attr('selected', 'selected'); Maybe this is not what you want to do, but why don't you use this? $('#mySelect').val(myValue); Bye -- gianiaz.net - web solutions via piedo, 58 - 23020 tresivio (so) - italy +39 347 7196482

[jQuery] Re: how do I hide an element after my function completes

2009-08-18 Thread Cesar Sanz
use $.ajaxStart and $.ajaxStop for showing/hiding your loader - Original Message - From: "brian" To: Sent: Sunday, August 16, 2009 12:17 PM Subject: [jQuery] Re: how do I hide an element after my function completes Use the 3rd param of $.get() $(function() { $(".pagination a").

[jQuery] Re: Setting option with a variable as its value to selected

2009-08-18 Thread north
Hi Giovanni, this seems to work as well. But somehow I'm getting the same error (just connected to another line of code). Mabye I'll have to tear the whole script apart and start over... :) Cheers On 18 Aug., 16:16, Giovanni Battista Lenoci wrote: > north ha scritto:> $('#mySelect option[valu

[jQuery] Re: Timeout

2009-08-18 Thread Cesar Sanz
check this out http://plugins.jquery.com/project/timers - Original Message - From: "James" To: "jQuery (English)" Sent: Monday, August 17, 2009 1:35 PM Subject: [jQuery] Re: Timeout http://www.w3schools.com/js/js_timing.asp Depending on how you define "inactive" (e.g. no mouse mo

[jQuery] Re: how to get back the DOM element as HTML source

2009-08-18 Thread John
Thanks, Anurag. Let me rephrase my question. For example, I can use the following jQuery to get the html source of a table element $("table:first").html() The returned html source does not include the table itself, I like to see the html source starting from the table, for example, .. Is

[jQuery] Re: manipulate elements with filter

2009-08-18 Thread Carlos Becar
Hi, Jules thanks for the example , i probe and it worked. Anurag pal, i remove the row this: insertDataBefore.clone(true).insertAfter(insertDataBefore).find("td").each(function() { $(this).find("select").attr("name","tipo"+count); $(this).find("input").attr({id:"informacion"+count,v

[jQuery] Input for Key Value Pairs with jQuery (a JSON Input field ?)

2009-08-18 Thread hasentopf
Hallo everybody. I'm looking for a possibility to enter Key:Value via a "html-jquery- input-form". The submit could look like this: "Kreditkarte" : "Xema", "Nr" : "1234-5678-9012-3456", "Key" : "Value", ... Maybe a textarea where you could enter the key and the value in each line. Does some

[jQuery] Re: best table plugin for large tables?

2009-08-18 Thread Cesar Sanz
mmm.. don't you think is too much data to render... maybe you can paginate in the server +jqGrid - Original Message - From: Charlie To: jquery-en@googlegroups.com Sent: Tuesday, August 18, 2009 5:03 AM Subject: [jQuery] Re: best table plugin for large tables? take a look

[jQuery] Re: Asp.net AJAX form

2009-08-18 Thread Cesar Sanz
when ajax request starts use $.ajaxStart(function(){ $("div.containing.image").show(); }); when ajax request stops use: $.ajaxStop(function(){ $("div.containing.image").hide(); }); - Original Message - From: "K1" To: "jQuery (English)" Sent: Tuesday, August 18, 2009 3:44 AM S

[jQuery] Re: [validate]

2009-08-18 Thread L.Ours.POlaiR
ok, report sent ;) Thanks. On 18 août, 16:14, Jörn Zaefferer wrote: > Okay, that looks fine so far. Could you file a ticket > here?http://plugins.jquery.com/node/add/project-issue/validate(needs > login/registration); Please attach that testpage with the description. > > Thanks > Jörn > > On T

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread ghost2008
Hey guys, this is amazing. Thanks for your answers. I implemented the following: $.ajax({ type: "POST", url: "some.php", data: "name=test", success: function(data){ $("#div").hide("slow");

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread Charlie
works in IE 7 &8 for me theosoft wrote: I have tried various things to get this to work in IE, and I'm not sure why it won't work. The shuffle effect works, but not properly. It works in all the other browsers just fine. I've uploaded the code to jsbin here: http://jsbin.com/icuko I need

[jQuery] Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Stockypotty
Hello, So I have some custom images as the background to my menu images, however I also have the text showing too, as can be seen here: http://i236.photobucket.com/albums/ff288/paramore_020/superfish.jpg How do I delete the text, so that just the image is showing. I have tried looking in all t

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
do the 2 divs really have same ID? the one being loaded and one loading into? I'm assuming this is pseudo code but just checking ghost2008 wrote: Hey guys, this is amazing. Thanks for your answers. I implemented the following: $.ajax({ type: "POST", url: "some.php", data:

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread theosoft
It faded for you in IE7 & 8? I'm not seeing the fade at all in IE. On Aug 18, 10:55 am, Charlie wrote: > works in IE 7 &8 for me > theosoft wrote:I have tried various things to get this to work in IE, and I'm > not sure why it won't work. The shuffle effect works, but not properly. It > works

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread ghost2008
Hey Charlie, this is pseudo, but they are exactly the same... Is this a problem? Thanks and regards

[jQuery] Re: Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Charlie
you could leave text there and use an offscreen text indent in css. Would actually be better for accesibility and SEO rather than deleting Stockypotty wrote: Hello, So I have some custom images as the background to my menu images, however I also have the text showing too, as can be seen

[jQuery] ToolTip not showing...what am I missing?

2009-08-18 Thread Rick Faircloth
I'm trying to create my own tooltip function and, after looking at a tutorial of which that is a part, it looks simple enough. But hacking apart some code and trying to extract the pertinent parts for my purposes has left me with a non-functional tooltip. I'm getting a "syntax error" on t

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Liam Byrne
That looks like it's posting twice ? Any particular reason to do that ? L ghost2008 wrote: Hey guys, this is amazing. Thanks for your answers. I implemented the following: $.ajax({ type: "POST", url: "some.php", data: "name=test",

[jQuery] Re: How to ignore parse errors using $.get

2009-08-18 Thread nick
That did the trick, thanks Fredrik! On Aug 18, 2:11 am, fredrik wrote: > You can use try catch, ie. > > try{ > $.get('http://www.example.com/',function(response){ >   var someText = $(response).find('#myDiv').text(); >   alert('success');}); > }catch(err){ > > //put code to handle error > > } >

[jQuery] Approaching popup callback hell

2009-08-18 Thread Matt Wilson
I'm using a modal dialogs and I love them, but I haven't found a really elegant way to handle actions in the dialog window that require changes to the parent page. Here's an example. I have a monthly calendar page that lists employee names on the days they are supposed to work. Clicking on an e

[jQuery] Re: JQuery Cycle effects don't work in IE

2009-08-18 Thread amuhlou
I checked it on a version of IE7 using VMware and am not seeing the fade transition working. There are, however, some validation errors you may want to clean up. the id attribute cannot start with a number, and it appears that your images for the cycle area all have this in common. On Aug 18, 9:

[jQuery] jQuery Twitter Full API Plugin - Help Needed Testing

2009-08-18 Thread Eric Garside
Hey guys, I've been working on a full implementation of the twitter API through, primarily, jQuery, with a simple relay script server side for securely signing and keeping auth details. I've just finished the library, and am looking for some developers who know either the twitter API and jQuery to

[jQuery] Re: App like hangman

2009-08-18 Thread anurag pal
Hi, You can use float for this purpose Like: a bc you can use attr method for getting this. Regards, Anurag Pal On Tue, Aug 18, 2009 at 7:07 PM, Boris Trivic wrote: > > OK thanks for reply. > > Which function enables me to find out which div is puted on which? > Exaple: > > div1 div2 > >

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-18 Thread sak
Hi I may be wrong here, and if so am not sure where I am going wrong but I can't seem to get the test2.html form http://dev.jquery.com/attachment/ticket/4512/ to work in ie8??? I am trying to solve the same issue with toggling for a web app I am working on. On Aug 7, 10:12 pm, John Resig

[jQuery] Re: Setting option with a variable as its value to selected

2009-08-18 Thread north
Nobody any clue why "$('#mySelect option[value="' + myValue + '"]').attr('selected', 'selected');" of code is throwing an error? On 18 Aug., 16:32, north wrote: > Hi Giovanni, > > this seems to work as well. But somehow I'm getting the same error > (just connected to another line of code). > > M

[jQuery] KFManager v1.0

2009-08-18 Thread Ken Phan
KFManager (Ken's File Manager) is a plugin of jquery. It uses AJAX to manage image files in a web browser and it was developed to help programmer gently in the file manager. It is easy to use demo >> http://trinhvietcuong.com/ken/index.html

[jQuery] Re: App like hangman

2009-08-18 Thread Boris Trivic
I think you didn't understand my question. I need to check is right char (it is in ) putted on right line (lines are divs, too). On Aug 18, 11:38 pm, anurag pal wrote: > Hi, > > You can use float for this purpose Like: > > a > b style="width:50%;float:left;">c > > you can use attr method for get

[jQuery] Re: Confused where to put superfish script

2009-08-18 Thread tacotac
The link to the site is: sjsracine.org I have installed the superfish module in Joomla. I noticed the error doesn't show in the Firefox browser. So intalling the module, I don't need to place the script in my template's index page? Thanks! -Tiffany On Aug 18, 6:01 am, Charlie wrote: > menu w

[jQuery] Re: [validator] Display error messages in a convenient location per each

2009-08-18 Thread Jörn Zaefferer
You can use the errorPlacement-option for that, replacing the default insertAfter(element) with appendTo(element.parent()) Jörn On Tue, Aug 18, 2009 at 6:33 PM, IvanHalen wrote: > Hello, > I'm playing with the great Bassistance jQuery Validator and am stuck > at a point > The idea is simple: I h

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread Charlie
ID's must be unique. Your animation will definitely choke on 2 the same ghost2008 wrote: Hey Charlie, this is pseudo, but they are exactly the same... Is this a problem? Thanks and regards

[jQuery] Re: Setting option with a variable as its value to selected

2009-08-18 Thread north
I found the issue. It's described here for example: http://csharperimage.jeremylikness.com/2009/05/jquery-ie6-and-could-not-set-selected.html On 18 Aug., 18:09, north wrote: > Nobody any clue why "$('#mySelect option[value="' + myValue + > '"]').attr('selected', 'selected');" of code is throwin

[jQuery] Re: Confused where to put superfish script

2009-08-18 Thread Charlie
correct. In your head you already have: jQuery.noConflict(); jQuery(function($){ $("ul.sf-menu") this is above where you are placing the new call you are putting in yourself with the noConflict function you can no longer use "$" in front of jQuery functions which you are trying to

[jQuery] How do I load an external http xml request with jquery?

2009-08-18 Thread desbest
How do I load an external http xml request with jquery? Below is a url when pasted into a web browser like firefox, an xml document is shown. This is for the CPanel XML API. http://hostingz.org:2086/xml-api/createacct?username=WeAreWatching&plan=hostingz%5FFH5&ip=n&cpmod=x3&password=changeme&c

[jQuery] Re: jquery or jquery UI error?

2009-08-18 Thread Met00 - Met00Cigar
On Aug 18, 4:11 am, Charlie wrote: > you shouldn't be pulling the scripts from jQuery site, use google AJAX > library instead. Also looks like you are using the full UI script along with > core and individual widget scripts > try removing src="[jQuery] Re: jquery or jquery UI error?
In that case, create a sample page showing the problem on jsbin.com: http://jsbin.com/ and post to the jquery-ui list: http://groups.google.com/group/jquery-ui - Richard On Tue, Aug 18, 2009 at 1:21 PM, Met00 - Met00Cigar wrote: > > On Aug 18, 4:11 am, Charlie wrote: > > you shouldn't be pull

[jQuery] Re: How do I load an external http xml request with jquery?

See what this does for you: $(function() { $.get("a url to some xml", function(response) { alert(response); }); }); Adrian On Aug 18, 6:18 pm, desbest wrote: > How do I load an external http xml request with jquery? > > Below is a url when pasted into a web brow

[jQuery] How can I modify this code to get the tooltip to disappear?

I've got it appearing at the correct time and following the mouse pointer correctly. But my last bit of code isn't causing the tip to be removed. Is it because the first section of code below is being triggered with every mouse movement? If so, how should I reconfigure this routine.?

[jQuery] Simple Question with Clone() and Append()

I'm trying to clone an element, more specifically a fieldset tag. Original HTML: Hello World. Javascript: $("fieldset").each(function(count,item){ var fieldsetBlock = $(this).append($(this).clone()) }) Desired HTML: Hello World. Hello World. Undesired Result: Hello World. Hell

[jQuery] Re: Simple Question with Clone() and Append()

Thank you Ed! On Aug 18, 11:05 am, Ed Allen wrote: > Replace .append() with .after() I think. > > On Aug 18, 10:52 am, Renato Untalan wrote: > > > I'm trying to clone an element, more specifically a fieldset tag. > > > Original HTML: > > Hello World. > > > Javascript: > > $("fieldset").each(fun

[jQuery] Re: Simple Question with Clone() and Append()

Replace .append() with .after() I think. On Aug 18, 10:52 am, Renato Untalan wrote: > I'm trying to clone an element, more specifically a fieldset tag. > > Original HTML: > Hello World. > > Javascript: > $("fieldset").each(function(count,item){ >   var fieldsetBlock = $(this).append($(this).clon

[jQuery] Re: Simple Question with Clone() and Append()

As per the docs (http://docs.jquery.com/Manipulation/append#content), append() appends "content to the *inside* of every matched element." You can try appending to the current matched element's parent, or try the after() method (http://docs.jquery.com/Manipulation/after#content) On Tue, Aug 18, 2

[jQuery] Thickbox and autosuggest

I am trying to use the thickbox plugin with the result function of the autosuggest plugin and haven't had any success with that $("#addCurrentLocation").result(function(event, data, formatted) { document.getElementById("prev_sightings").innerHTML = "View Location Info"; }); Basic

[jQuery] Re: Simple Question with Clone() and Append()

Thank you! On Aug 18, 11:05 am, Charlie Griefer wrote: > As per the docs (http://docs.jquery.com/Manipulation/append#content), > append() appends "content to the *inside* of every matched element." > > You can try appending to the current matched element's parent, or try the > after() method (ht

[jQuery] Re: How can I modify this code to get the tooltip to disappear?

Rick: I think in your mouseout binding, you also need to unbind the mousemove event handler from the document. I think would look like this: $('.clickable').mouseout(function() { $().unbind( 'mousemove' ); $('div.toolTip').remove(); }); -- Josh From:

[jQuery] Re: Interaction in tabs

Thank you Charlie. lionel28 wrote: > > Hello, > > I have 6 tabs. Each one of them contain many elements with class 'column' > > I'd like to know, when a tab is selected, how many such elements in that > selected tab. > > no matter how I tried, it gives me the right count on the first one >

[jQuery] Re: KFManager v1.0

What are the licensing terms? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ken Phan Sent: Tuesday, August 18, 2009 12:21 PM To: jQuery (English) Subject: [jQuery] KFManager v1.0 KFManager (Ken's File Manager) is a plugin of jquery.

[jQuery] Re: KFManager v1.0

Good job. Awesome! Cheers Marco Antonio On Tue, Aug 18, 2009 at 1:20 PM, Ken Phan wrote: > > KFManager (Ken's File Manager) is a plugin of jquery. It uses AJAX to > manage image files in a web browser and it was developed to help > programmer gently in the file manager. It is easy to use > > de

[jQuery] Detecting Selected Text

Is there a particularly jQuery-ish way to determine if there is text selected on the screen? I've googled around for some code on this subject, but I want to be sure that whatever I use is cross-browser compatible. It's been my experience that if I let jQuery do the heavy lifting for me, that my s

[jQuery] Re: Simple Question with Clone() and Append()

this use clone and insertAfter(insert after clone element) and update the content var insertDataBefore = $('#tablaFormulario').find('tr:last') insertDataBefore.clone(true).insertAfter(insertDataBefore).find("td").each(function() { $(this).find("select").attr({"name":"tipo"+count,value:""});

[jQuery] handler.apply is not a function

I am having trouble figuring out how to correct this error, i think i have narrowed it down to what function is causing the issue, since once i comment it out, it doent give the error, but the code no longer does what its supposted to. Whats weird is that the code works how it should even with the

[jQuery] Re: How can I modify this code to get the tooltip to disappear?

Thanks, Josh! Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Josh Nathanson Sent: Tuesday, August 18, 2009 2:37 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: How can I modify this code to get the tooltip to disappear? Rick: I think in y

[jQuery] Re: Superfish - How do you delete the text that appears in the menu

You sir are an absolute legend. I looked up what you said, found the CSS code in 10 seconds and added it it. Also you are completely right about it being better for SEO, so great!

[jQuery] list insert out of order

IE7/8 and Safari, but not FF are showing dropdown menu items out of alphabetical order when they're pulled in to a separate div, does anybody have any hints as to how it could be put into order Here's the current HTML: btext 1 atext 2 ctext 3 Here's the current J

[jQuery] Re: how to get back the DOM element as HTML source

Use DHTML property. $("table:first")[0].outerHTML On Aug 19, 12:36 am, John wrote: > Thanks, Anurag. Let me rephrase my question. For example, I can use > the following jQuery > to get the html source of a table element > > $("table:first").html() > > The returned html source does not include t

[jQuery] Re: how to get back the DOM element as HTML source

outerHTML is an IE addition to the DOM and not supported by Firefox. If you want to get it with jQuery just append the element to a div and get its html(): $('').append( $("table:first").clone() ).html() On Aug 18, 4:37 pm, Jules wrote: > Use DHTML property. > > $("table:first")[0].outerHTML >

[jQuery] Beginner needs help with jquery and ajax

Hello, I basically want to catch any ajax request sent by my app and display an alert. I have tried this to no avail: *jQuery("*").ajaxSend(function(event,request, settings){ alert('called'); });* whenever an ajax request is made the alert does not show... note that the ajax request is made

[jQuery] First Attempt

Hello, When I click on the either button, the size changes correctly, but goes right back to the default. What am I doing wrong? $(document).ready(function() { $('#small').click( function() { $("#textsize").addClass("smalltext") }); $('#large').click( function() { $("#textsize").addC

[jQuery] Issues with readying function - shorthand works, longhand doesn't

Hi there :) At work, I'm trying to implement some jQuery on the intranet, which runs on a Java framework (Liferay). I'm having some issues, and I've narrowed it down to being the difference between the two ready (function) calls. This version of the call WORKS: jQuery(function(){ al

[jQuery] Re: blockui v2.20 - hourglass cursor stays in IE 7+

jQuery blockUI plugin 2.23 (21/Jun/2009) Add the following line to the reset() function (+/- at line #344 in file jquery.blockUI.js) data.el.style.cursor = 'default'; It will fix the issue. On 4 ago, 01:26, John Simons wrote: > You should be able to replicate this onhttp://malsup.com/jquery

[jQuery] pass different IDs to function?

Hi all.I'm very new at jQuery, and I've gotten myself stuck.I have a set of menu tabs which should show/hide divs on the page, and the active tab should change style. So far I have been able to write the following, which does exactly what I want it to: function divFlip() {

[jQuery] Using $.ajax to post XML to an aspx page

I'm new to using JQuery and I've been searching everywhere to be able to post XML to a WebMethod on an aspx page in a site. I'm sure it can be done but I just have no idea how. Any help would be greatly appreciated!

  1   2   >