[jQuery] Edittable plugin problem

2009-06-01 Thread bharani kumar
Hi All, Am using the editable plug in , When i edit the values , i want to check the already exist and also want to pass the unique key to the query , for the Update WHERE condition , script type=text/javascript charset=utf-8 var oTable; $(document).ready(function() { /* Apply the jEditable

[jQuery] Re: Losing the form values in Firefox 2/3 only

2009-06-01 Thread Mohammed Arif
I am attaching the sample code to debug the issue: http://www.mohammedarif.com/test/index.html Steps to reproduce in FF 2/3: 1. Click on Add button, this will clone the entire piece of code and append in DOM 2. Put some values in form fields in both the tables/divs 3. Click on Move up button,

[jQuery] json format

2009-06-01 Thread Peter Marino
Hi jQuery, I'm very new to the json stuff (so warned)... when I try the following: var data = { member : { name : Peter Wraae Marino } } $.ajax({ url: http://localhost/test/gui/ajax_member.php;, type: GET, data: data, cache: false, dataType: json, success: function(msg){ alert( msg ); },

[jQuery] Re: json format

2009-06-01 Thread Mohd.Tareq
Hi ,var name = 'Peter Wraae Marino'; var data =name=+name; $.ajax({ url: http://localhost/test/gui/ajax_member.php;, type: GET, data: data, cache: false, dataType: json, success: function(msg){ alert( msg); }, error: function( XMLHttpRequest, textStatus, errorThrown ){ var t = XMLHttpRequest:

[jQuery] Re: Losing the form values in Firefox 2/3 only

2009-06-01 Thread Abrar Arshad
hi arif, what i understood from your sample page and explanation that is you cannot get the values of those elements which were generated dynamically after the page is loaded. If that is the case , you can use jQuery live() event to solve this problem, google it I hope it will help you.

[jQuery] Re: Losing the form values in Firefox 2/3 only

2009-06-01 Thread Mohammed Arif
Abrar, I am just cloning the set of elements not generating anything on the fly, it works fine till the time I don't reset ids/strings in given below code: moveUpDown : function (that, traversOrder, noOfCharts){ Order = traversOrder || 'down'; //Provides fallback value

[jQuery] Iframe Height

2009-06-01 Thread sarvansb
I am using Jquery to control the height of Iframe. jQuery(iframe,top.document).contents().height(); It's working for Increment of Iframe. When Iframe height decrease its not working.It returns the old value only. Anbody know why this is happening?

[jQuery] superfish prob in IE 7 when loading PDF

2009-06-01 Thread stikif...@yahoo.com
Hello there, I have a problem here when using superfish menus. I used the menu on top of the page and below it, i place an iframe to load a PDF. My problem is that the menus are overlapped by the opened PDF in IE 7 and Firefox. IT works fine in IE 6. Hope anybody encountered this

[jQuery] Re: Dynamic loading -- newbie question

2009-06-01 Thread vainov
Sure, I can see it in the browser. But I would also continue to manipulate the newly loaded content. And I can't figure out how to address it (i.e. how to obtain a handle to it. On 29 Maj, 19:56, Jonathan jdd...@gmail.com wrote: Due to .load being Asynch line 10 will execute before 5-8(those

[jQuery] Send XML to web service

2009-06-01 Thread vani
How would one go about sending an XML file to a web service? I'm guessing the data parameter of $.ajax function has something to do with it, but I could not find a working example in the documentation.

[jQuery] Iframe Height

2009-06-01 Thread sarvansb
I am using Jquery to control the height of Iframe. jQuery(iframe,top.document).contents().height(); It's working for Increment of Iframe. When Iframe height decrease its not working.It returns the old value only. Anybody know why this is happening?

[jQuery] bug: error of setRequestHeader in IE

2009-06-01 Thread mouqx xu
hi all: I come across a bug: html headtitlettt/title script src=/jquery.js/script script $.ajax({ type: 'POST', url: './', beforeSend: function(xhr){ xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded;charset=utf-8'); }, data: { a: 123

[jQuery] json reading data on server

2009-06-01 Thread Peter Marino
Hi jQuery, I'm trying to learn the json and ajax I have with success sent data over to the server in json now my question is how does one process this data on the server side? client side: var data = { member : { name : Donald Duck } } $.ajax({ url:

[jQuery] Re: json reading data on server

2009-06-01 Thread geronimo3
if you are using PHP then this function will probably help json_decode more information: http://www.php.net/manual/en/function.json-decode.php On Jun 1, 2:26 pm, Peter Marino marino.pe...@gmail.com wrote: Hi jQuery, I'm trying to learn the json and ajax I have with success sent data over

[jQuery] downloading application/json file instead of jQuery handling it

2009-06-01 Thread Alejandro Riera
Hello everyone! Currently I'm developping an application with RoR and jQuery. Is the first time I try to use this wonderful library so I'm still a little naive ^_^ Right now I'm having a problem that I have no idea how to solve. Documentation, google, etc have been useless for me in this point

[jQuery] What is the best way to pass variable data from Python to jQuery?

2009-06-01 Thread sarah
In my code I have some python code that retrieves some data from a db - and I need to pass some variables from the python code to my jQuery scripts in order to perform an action. The problem is - what is the best way to pass this data? So far in the office we've discussed adding the variable

[jQuery] Re: json reading data on server

2009-06-01 Thread Peter Marino
hi, yes i'm using php... but the data is sent so the server side has to use $_GET but what do I get?? $_GET??] I assume you want me to $data = json_decode( $_GET[?] ); * * *peter* On Mon, Jun 1, 2009 at 2:48 PM, geronimo3 jeroom...@gmail.com wrote: if you are using PHP then this

[jQuery] Scale symbol in line of text

2009-06-01 Thread dmikester1
Hello, I am creating a wedding website for a friend. I have their names at the top of the page in a large font with an in between like Mike Smith Suzy Jones. I would like to have it so that when you first visit the page the grows bigger and then shrinks back to normal size. I saw this done

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread ryan.j
scuze my lazy code, on a teabreak - this is just to hilight a way of using line-height to stop the fonts sliding down. $(#names).click(function(){ $(#names span).animate({ fontSize: 50px, }, 1500 ); $(#names span).animate({ fontSize: 1em, }, 1500 );

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread ryan.j
by the way, z-index controls layer order and wouldn't have much impact if the elements were all displayed inline. if you had two absolutely positioned elements overlapping, the one with the highest z-index would be nearer the back of the pile. On Jun 1, 2:30 pm, ryan.j

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread ryan.j
by the way, z-index controls layer order and wouldn't have much impact if the elements were all displayed inline. if think of your elements as being made up of sheets of paper stacked ontop of each other z-index is their order in that stack. the default behaviour is the first element in the

[jQuery] Re: Autocomplete two fields

2009-06-01 Thread Tom Worster
On 5/30/09 5:15 AM, Adrian Grigoras adrianc.grigo...@gmail.com wrote: I use JQuery.Autocomplete to autocomplete values into one field. Depending on the first field, I also need to populate a second field. For example: I autocomplete the Name field and depending on the selected name I

[jQuery] Accessing generated (= by a jQuery function) links

2009-06-01 Thread madhatter
Hi there, for an introductory article regarding jQuery I have done the obvious and shown how to do a slide show of pictures (nothing as fancy as lightbox :-). The application consists of 1 HTML, 1 JavaScript and one PHP file. Provided, I include div id=liste ul

[jQuery] no intellisense ...

2009-06-01 Thread Kris-I
Hello, I'm running Visual Studio 2008 SP1 on Windows 7 RC, I installed the KB958502, get the files jquery-1.3.2-vsdoc2.js and jquery-1.3.2.js placed in the root (but I tried other places) with the code below ... no intelisense . Do you have an idea why ? Thanks, %@ Page Language=C#

[jQuery] Re: Autocomplete Question

2009-06-01 Thread Tom Worster
On 5/30/09 12:31 PM, Marc marc.st...@gmail.com wrote: I am using jquery.autocomplete in a search for schools. I have optional fields (referenced as extraParams) which allow the user to narrow the search to a specific state and city. This part works fine. If the user selects a state and

[jQuery] Re: AutoComplete with extraParam

2009-06-01 Thread Tom Worster
On 5/30/09 5:15 PM, Dushyant Patel patel.dushy...@gmail.com wrote: Hi All, I am using AutoComplete plug-in, its working great for me. But now i have some new requirement and i am not able to make it work with autocomplete. Requirement is as follow: Now i need 2 extra parameter to

[jQuery] Re: [autocomplete] matchContains in multiple words

2009-06-01 Thread Tom Worster
On 5/31/09 5:36 PM, Alec alec.mil...@gmail.com wrote: http://docs.jquery.com/Plugins/Autocomplete Say I have the following entry in a data array: Quick brown fox Is it possible to return this entry when I search for e.g. qui fox? At this moment I can only get this result when

[jQuery] Re: jqGrid with an editable checkbox column

2009-06-01 Thread dev
Thanks. I created a custom formatter for checkbox column called checkboxFormatter(). - html head titlejqGrid - Custom

[jQuery] slider ui 1.6 with different handle class doesn't work

2009-06-01 Thread kape
I was using jQuery UI 1.5.3 and after I upgraded to 1.6 some of my sliders are not working properly. To be more specific, once I let go of the slider handle after moving it, it still moves with the mouse, even though my mouse button is not pressed anymore. It seems that if I used a different

[jQuery] Re: Accessing generated (= by a jQuery function) links

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] Re: json reading data on server

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] Re: Autocomplete two fields

2009-06-01 Thread Numan Ahmed
--- On *Mon, 6/1/09, numan nomigu...@yahoo.com* wrote: hello my friend how are u latest summer fashion hot fashion videos visit my website http://fashioninfokit.com/

[jQuery] Re: AutoComplete with extraParam

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] Re: jqGrid with an editable checkbox column

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] json indexing not working for me

2009-06-01 Thread Peter Marino
the basics: php, jquery, javascript server side ajax_member.php (bascially try to send what I get back to the client,.. for testing!!!) ?php $arr = $_GET; $myjson = json_encode($arr); echo $myjson; ? client side: var data = { mybutt : is so big!, member : { name : Donald Duck } } $.ajax({ url:

[jQuery] Re: accessing dom from different domain ?

2009-06-01 Thread waseem sabjee
$.ajax({ URL : www.myurl.com success: function(html) { var my id = $(#myid, html); alert(myid); }); }); On Mon, Jun 1, 2009 at 7:51 AM, kaspar kaspar...@gmail.com wrote: Ricardo , thank you for replay but I'm getting the same exception Permission denied to get property

[jQuery] Re: json indexing not working for me

2009-06-01 Thread Numan Ahmed
* --- On Mon, 6/1/09, numan numan@gmail.com wrote: hello my friend how are u latest summer fashion hot fashion videos visit my websitehttp://www.fashioninfokit.com/*

[jQuery] Unable to Formulate a Proper Title

2009-06-01 Thread kiusau
How does one assign the return value of a jQuery method/plug-in to a reference variable? Roddy An IT idiot with apparent zero ability to communicate among Geeks who systematically eschew reading but readily recommend the writing of others.

[jQuery] browser detection, conditional CSS

2009-06-01 Thread Adam
What's everyone's opinion on current best-practice for offering conditional CSS for specific browsers. I just noticed that Jquery used to have a detection function rolled in, which was deprecated. I have been using IE conditional comments to do this for a long while but recently used a WP theme

[jQuery] Re: Accessing generated (= by a jQuery function) links

2009-06-01 Thread brian
On Mon, Jun 1, 2009 at 8:51 AM, madhatter h...@ix.de wrote: Hi there, for an introductory article regarding jQuery I have done the obvious and shown how to do a slide show of pictures (nothing as fancy as lightbox :-). The application consists of 1 HTML, 1 JavaScript and one PHP file.

[jQuery] Re: browser detection, conditional CSS

2009-06-01 Thread waseem sabjee
i good thing to do is to declare this styles on your default / index page /* keep your page defaults the same across each browser */ html { width:100%; height:100%; } /* declare the initial margin and padding of each element to be 0, 0 */ * { margin:0; padding:0; } On Mon, Jun 1, 2009 at 6:44 PM,

[jQuery] Add Class to all form elements

2009-06-01 Thread Loony2nz
Hey everyone, I need help with a jquery task. I have a form that has it's HTML inserted into the database (yeah yeah I know..not my idea..I'm new here and just finding this out). Anyway, each form field has an embedded class in the HTML. The form is dynamically generated. Can be anywhere

[jQuery] Re: Add Class to all form elements

2009-06-01 Thread waseem sabjee
script $(function() { var myforms = $(form); myforms.each(function(i) { var myform = myforms.eq(i); var myfields = $(input, myform); myfields.each(function(i) { var myfield = myfields.eq(i); myfield.addClass(myflied_+i); }); }); }); /script On Mon, Jun 1, 2009 at 7:19 PM, Loony2nz

[jQuery] Plugin for styling select ?

2009-06-01 Thread amuhlou
Hey Everyone, I've been looking around the web for solutions to styling HTML form elements and haven't come up with much. Has anyone found a jQuery plugin (or possibly a standalone javascript) that lets you do this? I'm especially interested in styling the select element, but it would be great

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2.

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2.

[jQuery] JQquery Ajax call WCF remotely doesn't work

2009-06-01 Thread NH
I am trying to use JQuery Ajax to call WCF, but it seems it doesn't recoginze the path. Here is my code: $.ajax({ type: GET, url: http://localhost:3314/WCFServiceEx/Service.svc/ GetData, contentType: application/json; charset=utf-8, dataType: jsonp,

[jQuery] Live Event Handler

2009-06-01 Thread chris.lek...@gmail.com
Hi jQuery gurus :) I am trying to use the Live Event instead of the default bind. What I have notice though is that I can't use the live event if I am selecting a specific elementID. for example $('#myInputBox').live(...) but if I use it as $(':input).live(..) it works fine. Was wondering if

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2.

[jQuery] Question Animating and Removing Elements

2009-06-01 Thread spryor
Hi, I have a scenario where the user can click a delete button to remove a dynamic element from the page. Whent he button is clicked I want the element to slide up and then be removed from the DOM. I can't make this work however. I can either slide it up or remove it. Can anyone tell me how to

[jQuery] Re: JQquery Ajax call WCF remotely doesn't work

2009-06-01 Thread bittermonkey
Are you getting the Access to restriced URI denied error? If you are, here's my old post: http://groups.google.com/group/jquery-en/browse_thread/thread/b6579cd6f6c0a160/5e163538fcb0c139?hl=enlnk=gstq=brakes2k3#5e163538fcb0c139 Otherwise, you can try removing http://localhost:3314; from the url

[jQuery] JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Adrian Chen
I'm trying this Cycle Plugin, but whenever I load, lets say I have 5 images in the rotation pool, they all show up (briefly) whenever the page reloads, and then they dissapear (starting the rotation). Is there any way to avoid this? The images I'm using are 960 x 220, so it pretty much fills the

[jQuery] [autocomplete] hard time with accent

2009-06-01 Thread Gui
Hi folks, I'm currently using this JQuery autocomplete plugin. It fits my needs, pretty cool, however I'm having a hard time with accents. If I type: Antonio, the plugin won't retrieve Antônio. I mean, it won't handle the special characters (á, à, é, í, ó, ú and so on.) Is there any option so

[jQuery] Re: browser detection, conditional CSS

2009-06-01 Thread Tom Worster
On 6/1/09 1:16 PM, waseem sabjee waseemsab...@gmail.com wrote: i good thing to do is to declare this styles on your default / index page /* keep your page defaults the same across each browser */ html { width:100%; height:100%; } /* declare the initial margin and padding of each

[jQuery] Re: Plugin for styling select ?

2009-06-01 Thread clorentzen
For custom formatting selects, try the linkselect plugin: http://www.givainc.com/labs/linkselect_jquery_plugin.htm Best, --Carl. On Jun 1, 1:25 pm, amuhlou amysch...@gmail.com wrote: Hey Everyone, I've been looking around the web for solutions to styling HTML form elements and haven't

[jQuery] Wait for a certain word in array before executing when using .each loop

2009-06-01 Thread SmpleJohn
Here's my jQuery: var arr = ['621|342| ','620|343| ','622|342|clicked']; for (var i=0; i arr.length; i++){ var splode = arr[i].split('|'); xPos = splode[0]; yPos = splode[1]; click = splode[2]; $('#box').animate({top: yPos+'px', left: xPos+'px'},15); if (click === 'clicked'){

[jQuery] Passing a PHP variable to jQuery

2009-06-01 Thread Mike C
So I'm going to be printing a list of items from a database, and with each item there will be a link printed with it. Essentially, I want something like a href=link from database id=link_1Load/a, except I want the link to use ajax. So in my scripts.js file I'll have something like

[jQuery] Re: Passing a PHP variable to jQuery

2009-06-01 Thread GravyFace
On Mon, Jun 1, 2009 at 3:37 PM, Mike C snib...@gmail.com wrote: So I'm going to be printing a list of items from a database, and with each item there will be a link printed with it. Essentially, I want something like a href=link from database id=link_1Load/a, except I want the link to use

[jQuery] Request: build hoverFlow in jquery core

2009-06-01 Thread Mark
Hey, The biggest issue i always had with jquery was that queue build up stuff. Now we have the hoverFlow plugin to fix that: http://www.2meter3.de/code/hoverFlow/index.html But i was wondering.. shouldn't this be part of the core? like for example that you can say to the animate function to run

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Adrian Chen
Found how how to do it: .pics { width: 960px; height: 220px; margin-left: auto; margin-right: auto; overflow: hidden; } .pics img { width: 960px; height: 220px; } overflow: hidden did the trick. Thanks! On Jun 1, 1:27 pm, Adrian Chen

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Karl Swedberg
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote: Use CSS to control the initial display of the images. How would that be done? Right now this is what I'm using .pics { height: 220px; width: 960px; margin-left: auto; margin-right: auto; } .pics img { width: 960px;

[jQuery] Re: JQuery Cycle Plugin, all images in pool showing up when page loads

2009-06-01 Thread Karl Swedberg
Oops. Sorry I misspelled your name, Adrian. --Karl On Jun 1, 2009, at 3:58 PM, Karl Swedberg wrote: On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote: Use CSS to control the initial display of the images. How would that be done? Right now this is what I'm using .pics { height:

[jQuery] Re: Plugin for styling select ?

2009-06-01 Thread amuhlou
Thanks, I'll look into this one today! On Jun 1, 2:58 pm, clorentzen carl.lorent...@gmail.com wrote: For custom formatting selects, try the linkselect plugin: http://www.givainc.com/labs/linkselect_jquery_plugin.htm Best, --Carl. On Jun 1, 1:25 pm, amuhlou amysch...@gmail.com wrote:

[jQuery] Re: Passing a PHP variable to jQuery

2009-06-01 Thread Isaac Gonzalez
I personally would just use jQuery's .get() method. Then with your PHP pages you can use xml, json, or html snippets. I tend to use html snippets. i.e. HTML a href=MyNewBadAssDynamicPage.php?id=1 id=BadAssPage1View Bad Ass Page/a div id=BadAssPageContent/div JAVASCRIPT -

[jQuery] Re: Form Plugin

2009-06-01 Thread Robbie Clutton
So when I added the error and complete callbacks I can see it working, but I'm getting an error. It looks like it's submitting 3 times and is timing out. On May 31, 7:00 pm, Robbie Clutton robert.clut...@gmail.com wrote: Hey, I tried the form plugin, but I'm not getting the expected complete

[jQuery] Problem with Form and Validate plugins

2009-06-01 Thread Matt
Ok, this is my last resort, as I've been working on this for a while and am completely stumped. I'm probably just doing something stupid that I haven't noticed, so maybe a fresh pair of eyes would help. Essentially my problem is this: on this website I'm developing, users can submit photos for a

[jQuery] Re: Passing a PHP variable to jQuery

2009-06-01 Thread Mike C
Thanks for the replies! :D On Jun 1, 1:12 pm, Isaac Gonzalez ier...@gmail.com wrote: I personally would just use jQuery's .get() method. Then with your PHP   pages you can use xml, json, or html snippets. I tend to use html   snippets. i.e. HTML a href=MyNewBadAssDynamicPage.php?id=1

[jQuery] Re: no intellisense ...

2009-06-01 Thread MorningZ
here's your exact HTML with Intellisense working just fine for me http://i42.tinypic.com/2mdjo9e.jpg I'd take a guess you didn't install something correctly (and just to note, i am also on Windows 7 RC, so it's not that) On Jun 1, 9:48 am, Kris-I kris.i@gmail.com wrote: Hello, I'm

[jQuery] Re: Question Animating and Removing Elements

2009-06-01 Thread spryor
Hi Karl, Thanks for the response. It works great. Thanks, Stephen

[jQuery] Re: Form Plugin

2009-06-01 Thread Robbie Clutton
So when I added the error and complete callbacks I can see it working, but I'm getting an error. It looks like it's submitting 3 times and is timing out. On May 31, 7:00 pm, Robbie Clutton robert.clut...@gmail.com wrote: Hey, I tried the form plugin, but I'm not getting the expected complete

[jQuery] scrollTo plugin: prevent tabbing between slides?

2009-06-01 Thread Jack Killpatrick
Hi, Does anyone know of a way to prevent tabbing (via keyboard tab key) between form fields in different slides when using the jquery scrollTo plugin? For example, I have a UL with 2 LI's in it and each LI has a form inside of it. If a user is on slide 1 and hits tab on the last visible

[jQuery] cycle plugin issue

2009-06-01 Thread alienfactory
ok i cant get the easing plugin to work with cycle plugin 1. does cycle 2.65 work with easing 1.3 2. does easing work on the scrollHorz 3. if both of these are true then what am i doing wrong $('#slideshow').cycle({ fx: 'scrollHorz', timeout: 0, speed:

[jQuery] Re: cycle plugin issue

2009-06-01 Thread Mike Alsup
$('#slideshow').cycle({             fx: 'scrollHorz',             timeout:  0,             speed:    1000,            prev:    '#prev2',             next:    '#next2',                         easingIn        : 'easeOutCubic',              easingOut       : 'easeInBack' The option names

[jQuery] Not detecting element after adding new object

2009-06-01 Thread humsuplo
Hey, I hope anyone here can help me out. Basically what i am trying to do is that i have a unordered list and basically destroys the new list and creates a new one. The problem is that each element of that list has a hover event method. After the new list is created, the hover event is not

[jQuery] how to change colours?

2009-06-01 Thread Andreas
sorry for my ignorance. I don't mind about fancy stuff with the Superfishmenu. I just want to be able to change the colour of the text and the background. The default is light cyan and blue. How can I do this? Many thanks! Andreas.

[jQuery] form plugin, state change error

2009-06-01 Thread bfuzze
I'm using the ajax form plugin for jquery (1.2.6). I'm running into a problem with multiple submits, where on the second submission the response is not assigned to the correct state, even though the submission was successful. Instead, the response is classified under the onreadystatechange. It

[jQuery] Re: validate plugin error: $(#short-form).validate is not a function

2009-06-01 Thread stevegmag
Thanks everyone. I verified the includes and, not sure if this fixed it, but I moved all the validate code to the bottom of ready() function and everything started working. Really a great plugin! Having other issues, but will post those in new thread.

[jQuery] Bug in Block-UI jQuery plugin

2009-06-01 Thread g0dkar
Hi, I just found a bug on the Block-UI jQuery plugin. I'm using it to block a div on a component I'm developing but the problem is that the div has overflow: auto and max-height: 200px; so that the content inside it don't make it too big and be scrollable. The problem is that the overlay that

[jQuery] MultiFile plugin taking no parameters

2009-06-01 Thread depot2
This MultiFile plugin is taking no parameters. I must be overlooking something simple. Hope someone can help me out. Here's my test code: html head script src=/portal/scripts/jQuery/jquery.js type=text/ javascript/script script src=/portal/scripts/MultipleFileUpload/jquery.MetaData.js

[jQuery] Validate plugin: help with success function

2009-06-01 Thread Douglas Graves
So while digging around in our group's past discussions centered around the Validate plugin (which is awesome by the way), I found a function that deals with the placement of the error message on an invalid input. This was great because I needed to append the error to the invalid input's parent

[jQuery] Slider Values Not Accurate at Ends

2009-06-01 Thread Musixz Man
Hi all! No matter if I set min/max, step, etcwhen sliding all the way left or right, the values are incorrect at the end. For example, with default values, sliding all the way left results in a value of 10but moving back to the right slightly causes it to drop to 0 and then count up

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread dmikester1
Thanks Ryan. That worked pretty well. There is still one thing that is causing an issue. It is now pushing the right name farther to the right and pulling it back. Any ideas how to fix that? Thanks again. Mike ryan.joyce...@googlemail.com wrote: scuze my lazy code, on a teabreak -

[jQuery] Re: Unable to Formulate a Proper Title

2009-06-01 Thread kiusau
On Jun 1, 9:39 am, kiusau kiu...@mac.com wrote: How does one assign the return value of a jQuery method/plug-in to a reference variable? Why is this such a difficult question to answer? Who was it who once wrote that the jQuery community is helpful to those at all levels of mastery? Where are

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Richard D. Worth
Are you using ui.slider.css? Can you share a sample page? Maybe put something on jsbin.com? Also note, there's a dedicated list for jQuery UI questions: http://groups.google.com/group/jquery-ui - Richard On Mon, Jun 1, 2009 at 7:00 PM, Musixz Man mus...@hotmail.com wrote: Hi all! No

[jQuery] Re: Scale symbol in line of text

2009-06-01 Thread Gustavo Salomé
Try to separate the symbol in a div or another tag with position absolute. I think it will solve your problem. 2009/6/1 dmikester1 dmikest...@gmail.com Thanks Ryan. That worked pretty well. There is still one thing that is causing an issue. It is now pushing the right name farther to the

[jQuery] Re: Edittable plugin problem

2009-06-01 Thread Gustavo Salomé
No way you can do this. Ive a modified version of the plugin that i made which can do this. Ill send to if u want it. 2009/6/1 bharani kumar bharanikumariyer...@gmail.com Hi All, Am using the editable plug in , When i edit the values , i want to check the already exist and also want to pass

[jQuery] Re: Add Class to all form elements

2009-06-01 Thread mkmanning
Or you could just do this: $(':input,:checkbox,:radio').addClass('YOUR_CLASSNAME'); On Jun 1, 10:24 am, waseem sabjee waseemsab...@gmail.com wrote: script $(function() { var myforms = $(form); myforms.each(function(i) { var myform = myforms.eq(i); var myfields = $(input, myform);

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Musixz Man
Richard, No, I just include the default jQ ui.js and call $(#element).slider http://jsbin.com/abuxi I think I did that right Thanks. Date: Mon, 1 Jun 2009 19:53:50 -0400 Subject: [jQuery] Re: Slider Values Not Accurate at Ends From: rdwo...@gmail.com To: jquery-en@googlegroups.com Are

[jQuery] Re: JQquery Ajax call WCF remotely doesn't work

2009-06-01 Thread Gustavo Salomé
I bet that is the problem. 2009/6/1 bittermonkey brakes...@gmail.com Are you getting the Access to restriced URI denied error? If you are, here's my old post:

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Richard D. Worth
On Mon, Jun 1, 2009 at 9:10 PM, Musixz Man mus...@hotmail.com wrote: Richard, No, I just include the default jQ ui.js and call $(#element).slider The css in ui.slider.css is functional. It's also present in any complete jQuery UI theme. http://jsbin.com/abuxi I think I did that

[jQuery] Net Tuts interviews Karl Swedberg

2009-06-01 Thread MorningZ
I post this since Karl is way too humble to do so himself A good read for those that may have not seen it yet http://net.tutsplus.com/articles/interviews/jquerified-with-karl-swedberg/

[jQuery] Re: Net Tuts interviews Karl Swedberg

2009-06-01 Thread James
Nice! Thanks! On Jun 1, 3:32 pm, MorningZ morni...@gmail.com wrote: I post this since Karl is way too humble to do so himself A good read for those that may have not seen it yet http://net.tutsplus.com/articles/interviews/jquerified-with-karl-swed...

[jQuery] Re: validate plugin error: $(#short-form).validate is not a function

2009-06-01 Thread MorningZ
Ya know.. you are going to run into major issues if the fix is that your code has to be at the problem You've got underlying issues that you really really should get help on before you continue... and it's absolutely impossible to do so unless you provide a live and working (well, *non-working*)

[jQuery] Re: how to change colours?

2009-06-01 Thread James
Look in the file superfish.css and find .sf-menu a and below. Just do trial and error and see what changes what. On Jun 1, 10:54 am, Andreas andr...@antibaro.gr wrote: sorry for my ignorance. I don't mind about fancy stuff with the Superfishmenu. I just want to be able to change the colour

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Musixz Man
Yes, I'm still experiencing the issue with the output on jsbin. Slide the top slider all the way to the left. It SHOULD show 80:20 (20 being the slider value). For me, it shows 70:30. But when I then move it back one step to the right...it then shows 80:20. Are you getting a different

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Musixz Man
The same is happening with Safari and Opera on a 2nd machine. So...it cant really be just me...hehe...right? From: mus...@hotmail.com To: jquery-en@googlegroups.com Subject: [jQuery] Re: Slider Values Not Accurate at Ends Date: Mon, 1 Jun 2009 21:27:58 -0500 Yes, I'm still

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Richard D. Worth
Sorry, I was going off your previous instructions, so I was looking for 0 and 10. Now that I've had a closer look at your code, I see what the source of the problem is. You want to use the change event, in addition to the slide event: http://docs.jquery.com/UI/Slider#event-slide

[jQuery] Re: Slider Values Not Accurate at Ends

2009-06-01 Thread Musixz Man
Oh geez. I totally missed that change event :0 Thank you much for your help/time. -Kevin Date: Mon, 1 Jun 2009 22:39:34 -0400 Subject: [jQuery] Re: Slider Values Not Accurate at Ends From: rdwo...@gmail.com To: jquery-en@googlegroups.com Sorry, I was going off your previous instructions, so I

[jQuery] Weird Problem with Default Web Page in Some Browsers

2009-06-01 Thread jhm
Hi all, I've got a frustrating problem I can't figure out, and thought someone here might be able to help. Seems so simple that I must be doing something wrong, but not sure what to do about it... When I load my site with just the URL and depend on the default page getting loaded (i.e.

  1   2   >