[jQuery] Re: pass different IDs to function?

2009-08-18 Thread Mohd.Tareq
HI,var preId = null; function divFlip(Id) { $("#"+preId).hide(); $("#"+id).show(); preId = Id; $(".tabs").removeClass("highlight"); $("#1").addClass("highlight"); } Div One Div Two

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

2009-08-18 Thread Ricardo
does this work? jQuery().ready(function(){ alert("Hey!"); }); On Aug 18, 8:16 pm, Anna wrote: > 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 differen

[jQuery] Re: .replaceWith Issue

2009-08-18 Thread Ricardo
IE doesn't handle custom elements well, make them all s or s and it should be fine. Or if you need to keep it that way, try putting this before all scripts: if( $.browser.msie ){ $.each('Name,Role,Interests,Words'.split(','), function(){ document.createElement(this); }); }; creating an

[jQuery] Re: form.bind("submit") firing only once in firefox 3.5 ubuntu

2009-08-18 Thread Anoop kumar V
Are you using any ajax after you submit the form the first time? Thanks, Anoop On Tue, Aug 18, 2009 at 10:07 AM, Dmitriy Likhten wrote: > > I have tested this on jQuery 1.2.6 and 1.3.2... After binding a > form.submit event and returning false due to some logic, the second > time the form is su

[jQuery] Re: Add post to "My favorites" page

2009-08-18 Thread Meroe
So do you just want to load a form when one of those links is clicked? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Vladimir Sent: Tuesday, August 18, 2009 10:47 AM To: jQuery (English) Subject: [jQuery] Add post to "My favorites" p

[jQuery] Re: submit inside submit

2009-08-18 Thread efet
I have request boxes. they are called from index.cs.asp? Process=ViewRequests. Then I have forms inside these boxes. All with same ids #REQUESTFORM. when user clicks submit button (all have name=respond) in any of these forms I need that form sent to index.cs.asp?Process=RespondRequests and print

[jQuery] Re: submit inside submit

2009-08-18 Thread James
This here: $(function Requests() { // ... }); What are you trying to do? That's not valid Javascript syntax. On Aug 18, 4:47 pm, efet wrote: > Hi, > > I dont understand why the following code is not working. I dont > receive any errors, its just not working. > >     $(document).ready(functio

[jQuery] submit inside submit

2009-08-18 Thread efet
Hi, I dont understand why the following code is not working. I dont receive any errors, its just not working. $(document).ready(function() { $(function Requests() { $.ajax({ type: 'GET', url: 'content/requests/index.cs.

[jQuery] Re: KFManager v1.0

2009-08-18 Thread Meroe
I was able to get this working. I'm now integrating with codeigniter to see how it does there. On Aug 18, 4:06 pm, Web Specialist wrote: > 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 jque

[jQuery] Re: First Attempt

2009-08-18 Thread James
It looks like clicking the (submit) button is also submitting the form, which loads the same page again with the default text size. Add a "return false" to prevent the form from submitting. $('#small').click(function() { $("#textsize").addClass("smalltext"); return false; }); On Aug 18,

[jQuery] Re: .html() ignoring updated input value

2009-08-18 Thread James
You can use serializeArray() to serialize all the form info into an object. http://docs.jquery.com/Ajax/serializeArray For what purpose are you "saving" the state of the form? Maybe there are workarounds depending on what you're trying to achieve. On Aug 18, 7:29 am, resetstudio wrote: > Hi eve

[jQuery] Re: First Attempt

2009-08-18 Thread AMP
Its pretty simple, I've included all the code here: * A.html http://www.w3.org/1999/xhtml";> Untitled Document Hello World A.

[jQuery] Re: .html() ignoring updated input value

2009-08-18 Thread RobG
On Aug 19, 3:29 am, resetstudio wrote: > Hi everybody, how are you? > I have to save the state of a form in a var before submitting it with > the whole html, but if I alert the var, I get the original html > without the updated input fields. > > Example: > I have > >     > > > and I fill tha

[jQuery] Re: using data() to store additional info in the html markup

2009-08-18 Thread Charlie
the markup being used is the way metadata plugin stores data. If you already have this data marked up like this the metadata plugin is easy to use to extract it James wrote: data() does not look for an actual "data" attribute string value on the DOM. You have to set it with data(), like:

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

2009-08-18 Thread Charlie
possibly someone added noConflict() into the jquery.js file ( or eleswhere). Open it in browser and look at very end of file. If so the "$" can't be used Anna wrote: Hi there :) At work, I'm trying to implement some jQuery on the intranet, which runs on a Java framework (Liferay). I'm ha

[jQuery] Re: First Attempt

2009-08-18 Thread Charlie
this looks fine, must be something else css or script related. Perhaps you could create a test page at jsbin.com, it has an option to include jquery and therefore present live issues AMP wrote: Hello, When I click on the either button, the size changes correctly, but goes right back to the

[jQuery] Re: using data() to store additional info in the html markup

2009-08-18 Thread James
data() does not look for an actual "data" attribute string value on the DOM. You have to set it with data(), like: $("#myElement").data('name', 'foo-bar'); and get it with: $("#myElement").data('name'); The second argument (value) is not limited to a string. You can use objects, etc. http://do

[jQuery] Trying to use blockUI from within an iframe to block the parent iframe

2009-08-18 Thread zanberdo
I am loading a collection of frames as follows (from jsp source, so ignore <%= %> blocks): I have jquery and blockUI loading from the frame MNGM_WORKINGAREA. I would like to use blockUI to block the entire page from the fr

[jQuery] Re: weird animate() flicker in strict DTD in FF3

2009-08-18 Thread jen
I've seen it and researched a solution extensively but haven't found one. Did you have any luck? On Jul 21, 5:49 pm, jquertil wrote: > I can't believe no one else has seen this? I've tried to isolate the > problem but so far, it's pretty consistent.

[jQuery] Re: frustrating IE problem

2009-08-18 Thread ninjagowoowoo
turns out it was indeed the CSS statement. I'm not exactly sure what the specific issue was, but I believe it was my varying css styles that didn't carry over. EG: I had backgroundBottom:none on some items, styles on some, and simply 0px on others. Streamlining it and keeping the styles linear hel

[jQuery] Add post to "My favorites" page

2009-08-18 Thread Vladimir
Hi everyone. I am not familiar with js and jQuery, but need to create function to add/remove blog post to "My favorites" page and update counter of saved posts. Is any ready solution - plugin or snippet - to it? There is my html snippet. http://www.example.com/add-post-to-my-favorites-page.htm"

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

2009-08-18 Thread IvanHalen
Hello, I'm playing with the great Bassistance jQuery Validator and am stuck at a point The idea is simple: I have lot of this markup (I semplify, but the idea is that after each there could be something else, i.e. a word, an icon, etc... that is "inline" with the corresponding): px px px W

[jQuery] cloning radio buttons/names in IE

2009-08-18 Thread zadee
Hi, I need to .clone() sections in a dynamic form, but get problems with the radio buttons in IE. To work as a group, the radio buttons need to have the same name (per section). This is accomplished by changing the name attribute after cloning a hidden section in a . Easy with jQuery! - and it w

[jQuery] Re: Add extra content to the title attribute

2009-08-18 Thread Glödu
This does not work when there are multiple title-attribute to add, there it is only from the first title element transferred. On 11 Aug., 07:18, Paul Collins wrote: > Thanks for your help guys, that worked a treat. > You're right Liam, that was my bad, there was no "add" there, I meant > "attr",

[jQuery] Re: Add extra content to the title attribute

2009-08-18 Thread Glödu
This does not work when there are multiple title-attribute to add extra content, the original title from the first title element stay in the other tiltes. On 11 Aug., 07:18, Paul Collins wrote: > Thanks for your help guys, that worked a treat. > You're right Liam, that was my bad, there was no "

[jQuery] .replaceWith Issue

2009-08-18 Thread Matthew Wehrle
Hey guys, I'm having a bit of an issue with the site I'm building at the moment. It's currently under http://www.swfmania.co.uk/dotcommon with the CSS at http://www.swfmania.co.uk/dotcommon/style.css and the relevant jQuery file at http://www.swfmania.co.uk/dotcommon/tabs.js If you're using Fire

[jQuery] .html() ignoring updated input value

2009-08-18 Thread resetstudio
Hi everybody, how are you? I have to save the state of a form in a var before submitting it with the whole html, but if I alert the var, I get the original html without the updated input fields. Example: I have and I fill that field with "hahahah", on $("div").html() i get "" and not "".

[jQuery] form.bind("submit") firing only once in firefox 3.5 ubuntu

2009-08-18 Thread Dmitriy Likhten
I have tested this on jQuery 1.2.6 and 1.3.2... After binding a form.submit event and returning false due to some logic, the second time the form is submitted, the event never executes and false is automatically used by the browser. Has anyone else experienced this? Is this a browser bug vs a jQu

[jQuery] using data() to store additional info in the html markup

2009-08-18 Thread pixeline
Hi! i'm trying to store some additional information only useful for my javascript. I thought i could use a data html attribute to do that but it does not seem to work: console.log() returns "undefined" here is the relevant extract of my code, in case i did something wrong:

[jQuery] Fix for unblocking the UI in IE 8.0

2009-08-18 Thread vinicius.vbf
jQuery BlockUI 2.23 (21-Jun-2009) Issue: When clicking on the button "Default Message" in the "Page Blocking Examples" page (http://malsup.com/jquery/block/#page) the mouse cursor does not reset to the "default" style when the UI is unblocked. How to fix: Insert the following line to the line #3

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

2009-08-18 Thread Karl
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!

[jQuery] pass different IDs to function?

2009-08-18 Thread Laura
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] Re: blockui v2.20 - hourglass cursor stays in IE 7+

2009-08-18 Thread vinicius.vbf
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] Issues with readying function - shorthand works, longhand doesn't

2009-08-18 Thread Anna
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] First Attempt

2009-08-18 Thread AMP
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] Beginner needs help with jquery and ajax

2009-08-18 Thread Julien Martin
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] Re: how to get back the DOM element as HTML source

2009-08-18 Thread mkmanning
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] Re: how to get back the DOM element as HTML source

2009-08-18 Thread Jules
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] list insert out of order

2009-08-18 Thread Benn
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: Superfish - How do you delete the text that appears in the menu

2009-08-18 Thread Stockypotty
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] Re: How can I modify this code to get the tooltip to disappear?

2009-08-18 Thread Rick Faircloth
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] handler.apply is not a function

2009-08-18 Thread Red
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: Simple Question with Clone() and Append()

2009-08-18 Thread Carlos Becar
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] Detecting Selected Text

2009-08-18 Thread Chris Jordan
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: KFManager v1.0

2009-08-18 Thread Web Specialist
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] Re: KFManager v1.0

2009-08-18 Thread Meroe
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: Interaction in tabs

2009-08-18 Thread lionel28
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: How can I modify this code to get the tooltip to disappear?

2009-08-18 Thread Josh Nathanson
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: Simple Question with Clone() and Append()

2009-08-18 Thread Renato Untalan
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] Thickbox and autosuggest

2009-08-18 Thread Anush Shetty
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()

2009-08-18 Thread Charlie Griefer
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] Re: Simple Question with Clone() and Append()

2009-08-18 Thread Ed Allen
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()

2009-08-18 Thread Renato Untalan
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] Simple Question with Clone() and Append()

2009-08-18 Thread Renato Untalan
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] How can I modify this code to get the tooltip to disappear?

2009-08-18 Thread Rick Faircloth
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] Re: How do I load an external http xml request with jquery?

2009-08-18 Thread Adrian Lynch
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] Re: jquery or jquery UI error?

2009-08-18 Thread Richard D. Worth
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: 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] How do I load an external http xml request with jquery?
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: Confused where to put superfish script

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] Re: Setting option with a variable as its value to selected

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: How to refresh a single div with the data using .ajax

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: [validator] Display error messages in a convenient location per each

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: Confused where to put superfish script

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: App like hangman

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] KFManager v1.0

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: Setting option with a variable as its value to selected

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] Re: Bug? -- toggle() of TR broke in IE8

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: App like hangman

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] jQuery Twitter Full API Plugin - Help Needed Testing

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: JQuery Cycle effects don't work in IE

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] Approaching popup callback hell

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: How to ignore parse errors using $.get

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] Re: How to refresh a single div with the data using .ajax

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] ToolTip not showing...what am I missing?

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: Superfish - How do you delete the text that appears in the menu

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] Re: How to refresh a single div with the data using .ajax

Hey Charlie, this is pseudo, but they are exactly the same... Is this a problem? Thanks and regards

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

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

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] Superfish - How do you delete the text that appears in the menu

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: JQuery Cycle effects don't work in IE

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] Re: How to refresh a single div with the data using .ajax

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: [validate]

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: Asp.net AJAX form

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: best table plugin for large tables?

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] Input for Key Value Pairs with jQuery (a JSON Input field ?)

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: manipulate elements with filter

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] Re: how to get back the DOM element as HTML source

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: Timeout

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: Setting option with a variable as its value to selected

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: how do I hide an element after my function completes

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

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: [validate]

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] Setting option with a variable as its value to selected

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]

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] JQuery Cycle effects don't work in IE

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: Conflict between jquery and mootools

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] Re: Conflict between jquery and mootools

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: App like hangman

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: [validate]

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

  1   2   >