[jQuery] Re: selector, second to last row of table

2009-06-17 Thread ggerri
Hi just want to share my piece of code for getting out values of rows/ cells. $('#myTableID tr:gt(1)').each(function(){ $(this).find('td').each(function(){ // get the cell text out with $.trim($(this).text()); }); }); hope that helps Gerald On Jun 17, 7:08 pm, theprodigy

[jQuery] Re: Add Class to all form elements

2009-06-17 Thread Loony2nz
The easiest implementation was Gustavo's. however, how do i exlcude the submit button? I guess i can go back and do a single call to remove the class after the fact. On Jun 17, 11:47 pm, Loony2nz wrote: > Hi all, > > Just for clarification, there is only one form on the page at any one > time.

[jQuery] Re: Add Class to all form elements

2009-06-17 Thread Loony2nz
Hi all, Just for clarification, there is only one form on the page at any one time. Thank you all for you thoughts. I'm going to try them tonite. On Jun 2, 9:40 am, mkmanning wrote: > "if you have inputs that are not within forms" > That should never happen if you're using valid markup ;) >

[jQuery] Re: what is the correct way to test 'display' value in jQuery?

2009-06-17 Thread Jake Barnes
So can I do this? if ($('#subnav-1').css('display') == "block") $('#subnav-1').css ('background-color', '#f00'); That is, if this element has display:block then turn the background red? Just a hypothetical example, of course. On Jun 17, 10:55 pm, Ricardo wrote: > $('#subnav-1').toggle(); >

[jQuery] How can I improve the performance of this code?

2009-06-17 Thread WD.acgrs
the code: var choiceShownArray = new Array(); var cache1 = $("span[class^='matrix_choice_']"); var cache2 = $("input[id^='showChoice']"); var cache3 = $(".has_outcome"); var cache4 = cache3.find("span[class^='matrix_choice_'] [cchar='']").next().andSelf(); function changeShowChoice() { c

[jQuery] Re: A bit of help with some jQuery effects

2009-06-17 Thread waseem sabjee
Try this. put a hyperlink anywhere in the container like this test use the following JQuery $(".testlink").click(function(e) { e.prevenntDefault(); }); if the page contianer slides in any direction a bit when you click this there is probably a bug in the slider code on hyperlink click. if th

[jQuery] yii

2009-06-17 Thread ransacker
how to set selected option of an activeDropDownList into an activeTextField

[jQuery] Re: How to dynamically size an ?

2009-06-17 Thread Charlie
if contents are text just use css, not likely a need for scripting this li { float: left; width: 25%; text-align: center} wrap contents in another tag if you want to visually separate borders, backgrounds etc Brian wrote: What I Have: I have a bunch of inline blocks next to each other lik

[jQuery] parseerror on GET from window.location

2009-06-17 Thread jacktanner
I'm trying to do an AJAX GET. var q_url = window.location.toString(); $.ajax({ type: 'GET', url: q_url, cache: false, dataType: 'json', success: function(respons

[jQuery] Re: How to test/filter for all divs being hidden ?

2009-06-17 Thread Charlie
One filter would be to check the length of div:visible, if zero no div's visible I think there is a lot easier way to accomplish your task without having to splice for ID's, writing filter tests and without any if statements at all by using classes for everything you are doing By adding/remo

[jQuery] json function how to pass more than 2 variables to php...HELP

2009-06-17 Thread jinnie
var sd=jQuery.noConflict(); sd.getJSON("/include/employer/template/edit.php?action=t", {plac:,gp:fpoint,job_id:}, function(json) { // q.post("/include/employer/template/tryinp.php?geocode=finalpoint", function(xml) { //alert(xml);

[jQuery] A bit of help with some jQuery effects

2009-06-17 Thread danomagazine
On my site here (http://rightcross.net/coda/mosaic.html), I am using the coda slider effect I found here (http://jqueryfordesigners.com/ coda-slider-effect/). And on the tab entitled "Home Groups", there is a link "Home Group 1", which links to a fancy zoom box that I got from here (http://ordered

[jQuery] [validate] custom error label show and hide

2009-06-17 Thread Erwin Purnomo
Hi all... I have created a form that consist of radio buttons group, and used jQuery validate to check the input. But I came across this error label that I want to modify the way it showed to the user U must all know that jQuery validate plugin show the custom error label by changing the css dis

[jQuery] How to dynamically size an ?

2009-06-17 Thread Brian
What I Have: I have a bunch of inline blocks next to each other like such: _[A]_[B]_[C] _[D]_ Key: _ = margin [letter] = box element, in my case Question: How do I make it so that the margins on the left and right side of my 's determine the 's width? So, in other words, I am looking for eac

[jQuery] json function to parse value to php...HELP

2009-06-17 Thread jinnie
var sd=jQuery.noConflict(); sd.getJSON("/include/employer/template/edit.php?action=t", {finaladdress:,gp:fpoint,job_id:}, function(json) { // q.post("/include/employer/template/tryinp.php?geocode=finalpoint", function(xml) { //alert(xml);

[jQuery] How to display submenu items in Superfish menu?

2009-06-17 Thread jstuardo
Hello... this is a very basic question, but I don't know how to enter a Joomla menu so that it has a hierarchy feasible to be shown using super fish menu module. Any help will be greatly appreciated, Thanks Jaime

[jQuery] Re: what is the correct way to test 'display' value in jQuery?

2009-06-17 Thread Ricardo
$('#subnav-1').toggle(); http://docs.jquery.com/Effects/toggle You can also access the display property with $('#subnav-1').css ('display'); On Jun 17, 10:02 pm, Jake Barnes wrote: > This code works, but it seems inelegant: > > if ($("#subnav-1")[0].style.display == "block") $("#subnav-1") > [

[jQuery] jQuery BlockUI Plugin

2009-06-17 Thread Dave Maharaj :: WidePixels.com
I am tryingto get this to work but no go. I have : $('a[class^="edit_"]').click(function() { var url_id = $(this).attr('href'); var e = $(this).attr('class'); var x = $(this).attr('id').split('_'); var y = x[0]; var z = x[1]; //alert(e); $('a[class^="edit_"]').block({ mess

[jQuery] Re: Cluetip - Fixed position using dimensions of parent element NOT calling element

2009-06-17 Thread PapaBear
Problem resolved. Upon investigation the tag seemed to have no dimensions (using firebug to investigate) so tried moving the cluetip to be triggered off the tag instead. Tooltips now positioning correctly. Cheers James.

[jQuery] Re: what is the correct way to test 'display' value in jQuery?

2009-06-17 Thread Charlie Griefer
On Wed, Jun 17, 2009 at 6:02 PM, Jake Barnes wrote: > > > This code works, but it seems inelegant: > > if ($("#subnav-1")[0].style.display == "block") $("#subnav-1") > [0].style.display = "none"; > > This seems to violate The One True jQuery Way: > > [0] > > I assume I'm not suppose to do that. >

[jQuery] what is the correct way to test 'display' value in jQuery?

2009-06-17 Thread Jake Barnes
This code works, but it seems inelegant: if ($("#subnav-1")[0].style.display == "block") $("#subnav-1") [0].style.display = "none"; This seems to violate The One True jQuery Way: [0] I assume I'm not suppose to do that. The each() method is more elegant, but it is more verbose: $("#subnav-1

[jQuery] Newbie dumb question

2009-06-17 Thread Dave Maharaj :: WidePixels.com
Ok i am submitting a form with the jquery.formplugin by malsup My dumb question is where do I put the script code? My Page loads -> click edit i have a modal window open up and thats the form there in the modal that iwant to submit ajax. Do i put my form script in the form page its self or do I a

[jQuery] Error in IE - Error: 'url' is null or not an object

2009-06-17 Thread Heather
Site - http://www.scentsy.com/heather101 Location of js and css - http://heather101.com/jcarousel/skins/tango/skin.css http://heather101.com/jcarousel/scentsy/scentsy.js http://heather101.com/jcarousel/skins/ie7/skin.css The jCarousel works great in all other browsers, but in IE, when you get to

[jQuery] Re: Form plugin - success callback not executed ?

2009-06-17 Thread Mike Alsup
> I found out it's because I need an existing element for option "target". > I didn't want any element to be updated by the result, that's why I put this > #dummy pointing to nowhere. > Well, I added an element display:none in my Html and point it to that one Why use the target option if you don'

[jQuery] how don't make request after first request

2009-06-17 Thread Kirill
помогите please how to set preferences autocompleter made no inquiry after the first, which has already downloaded all the possible values? какие указать настройки чтобы autocompleter не делал запрос после первого, который уже загрузил все возможные варианты? jQuery("#mobile").autocompl

[jQuery] jsonp - how don't make request after first request

2009-06-17 Thread Kirill
помогите please how to set preferences autocompleter made no inquiry after the first, which has already downloaded all the possible values? какие указать настройки чтобы autocompleter не делал запрос после первого, который уже загрузил все возможные варианты? jQuery("#mobile").autocompl

[jQuery] Blocking for javascript include

2009-06-17 Thread Paul Tarjan
I'm writing a snippet of code to be put on any third party website and have NO idea what environment it will be dropped into. My end goal is for the badge to be http://example.com/js/badge.js";> I would like to use jQuery in my badge code to make my life easier, but I don't want to require a

[jQuery] using tabs in form fieldset

2009-06-17 Thread efet
Hi, I was wondering if any of you would suggest me how to use the tabs in the following page in a form: http://refinethetaste.com/html/cp/?Section=orders&Process=AddOrder I use jQuery.Tools tabs in all other pages but I never used it in a form before. // perform JavaScript after the document i

[jQuery] Re: First Parent Siblings

2009-06-17 Thread Charlie
$(".classa").click(function () {             $(this).parent().next(".classdiv").toggle();                           }); FrenchiINLA wrote: Thank you for the reply. I would like to show hide the div located right after the h3 when a.classa is clicked, and not all other div.classdiv

[jQuery] Re: Form plugin - success callback not executed ?

2009-06-17 Thread debussy007
I found out it's because I need an existing element for option "target". I didn't want any element to be updated by the result, that's why I put this #dummy pointing to nowhere. Well, I added an element display:none in my Html and point it to that one ... debussy007 wrote: > > Hi, > > it see

[jQuery] Re: First Parent Siblings

2009-06-17 Thread Mauricio (Maujor) Samy Silva
Try: $(this).parent().next().toggle(); Maurício -Mensagem Original- De: FrenchiINLA Para: jQuery (English) Enviada em: quarta-feira, 17 de junho de 2009 18:16 Assunto: [jQuery] First Parent Siblings I have several following html code:

[jQuery] Re: First Parent Siblings

2009-06-17 Thread FrenchiINLA
Thank you for the reply. I would like to show hide the div located right after the h3 when a.classa is clicked, and not all other div.classdiv located on other lines. Thanks again On Jun 17, 2:19 pm, waseem sabjee wrote: > do you want to toggle the class on the div or toggle a transition  like >

[jQuery] Re: First Parent Siblings

2009-06-17 Thread waseem sabjee
do you want to toggle the class on the div or toggle a transition like slideToggle or fadeToggle ? On Wed, Jun 17, 2009 at 11:16 PM, FrenchiINLA wrote: > > I have several following html code: >

[jQuery] Re: jQuery in 3rd party environment

2009-06-17 Thread waseem sabjee
I really try my best to avoid running JQuery of this link : http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/ or any other external source. wen i do i sometimes see my fade function dragging a bit. may be include JQuery in your script ? On Wed, Jun 17, 2009 at 11:12 PM, Paul Tarjan wrote: > >

[jQuery] First Parent Siblings

2009-06-17 Thread FrenchiINLA
I have several following html code:

[jQuery] Re: IE6 Background Image Flicker

2009-06-17 Thread waseem sabjee
Opacity should work in IE6. just beware of one think : In IE6 the last element also has the highest priority. I test all my sites on IE6,7,8, FF2,3 Chrome and safari. never had a problem with opacity On Wed, Jun 17, 2009 at 11:05 PM, Jeff wrote: > > Since jQuery.browser and jQuery.browser.versi

[jQuery] Form plugin - success callback not executed ?

2009-06-17 Thread debussy007
Hi, it seems that my success callback is not getting executed, however, the Ajax post seems to be ok (200) with the correct text output ... The other params have effect, e.g. the ajax calls will be synchronous (option async to false) $('td[id^=order]').each(function(i) { var tdId = $(th

[jQuery] jQuery in 3rd party environment

2009-06-17 Thread Paul Tarjan
I'm writing a snippet of code to be put on any third party website and have NO idea what environment it will be dropped into. My end goal is for the badge to be http://example.com/js/badge.js";> I would like to use jQuery in my badge code to make my life easier, but I don't want to require a

[jQuery] IE6 Background Image Flicker

2009-06-17 Thread Jeff
Since jQuery.browser and jQuery.browser.version are depreciated as of jQuery 1.3, what is the preferred way to check if the browser (in this case IE6) needs to have the "BackgroundImageCache" set? The closest match I see is jQuery.support.opacity, but I'm not sure if that is pertaining to how the

[jQuery] jqModal - ajax response

2009-06-17 Thread prashant roy
Hi, I am using jqModal to pop up the modal dialog box. I want to check the content of loaded request in jqModal dialog box at the time of showing this jqModal dialog box. its same thing like i want to have responseText of ajax call for this JqModal dialog bo. I know it has few methods for its

[jQuery] Re: I am a new user and using jquery in lightbox and thikbox but i want more

2009-06-17 Thread waseem sabjee
This page has helped me through a lot when i started out. http://docs.jquery.com/Events On Wed, Jun 17, 2009 at 8:45 PM, SK Developers wrote: > > Any body Know's where to find free ebook's for jQuery and Ajax let me > know at www.mangomobi.com >

[jQuery] Re: cloning ajax

2009-06-17 Thread James
It's possible that when you clone the form, you're also cloning all the ID attributes that may be associated with the form or form fields. Remember that a HTML document can only have unique IDs. Otherwise, there will be conflicts, especially with Javascript coding. On Jun 16, 8:24 pm, Peter Marin

[jQuery] Re: jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread amuhlou
in IE8 choose Tools > Compatibility View to trigger IE7 mode. definitely check out that stray comma Nikola mentioned, as I've seen IE choke on those lots of times before. If you really want to uninstall IE8, you can probably do a system restore back to a date before you installed IE8. On Jun 17

[jQuery] I am a new user and using jquery in lightbox and thikbox but i want more

2009-06-17 Thread SK Developers
Any body Know's where to find free ebook's for jQuery and Ajax let me know at www.mangomobi.com

[jQuery] Re: jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread Charlie
page breaks in IE 7 w3 validator shows broken tags and  microsoft debug has error here : }).playlist(".entries"); good practice to run validator (easy click from Firefox developer toolbar) , can find  issues that may not be obvious, or when page not acting properly  http://validator.w3.org

[jQuery] Re: trouble using $.get xml

2009-06-17 Thread James
If xml.drugstore.com is not the page that your Javascript is located on, it's not going to work. You cannot use AJAX (XMLHTTPRequest) to make cross-domain requests. If xml.drugstore.com is not your domain, you're going to have to use another method. One recommended way is to use a proxy script. Fo

[jQuery] Re: jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread Nikola
You know, you can view sites in IE7 mode with IE8 Just change the Document Mode to IE7 standards. Also, it's not a problem with jQuery you have a trailing comma on line 65 of your inline script: clip: {baseUrl: 'http://www.pangeaadvisors.org'}, // <-- This comma is the problem On J

[jQuery] Re: Ajax firing at page load

2009-06-17 Thread James
The $.load is executed only when the getResults() function is called. And you're calling it on document load. The first line: $('#PowerPipeConfigurations').change(function(){ getResults (); }).change(); You're setting a callback onchange, and then you're calling: .change (); This is executing th

[jQuery] Re: Submit form with serialize() question

2009-06-17 Thread James
By 'images', if you mean uploading images, then no. You can't upload files via AJAX (XMLHTTPRequest). There are a lot of workarounds by using Flash or hidden iframes to make it like AJAX. Do a web search and you'll find a lot of resources and plug-ins. On Jun 17, 7:45 am, debussy007 wrote: > Hel

[jQuery] Re: Problem in JQuery_intellisense at VS-08

2009-06-17 Thread Ricardo
AFAIK the vsdoc.js that ships with VS is only for it's autocomplete feature. Use the latest release from here instead: http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js On Jun 17, 7:09 am, Ofer Hashimshony wrote: > Hey people I have a bug in Jquert intellisense > When I add the reference

[jQuery] Re: Delete image

2009-06-17 Thread brian
First of all, I'd put an ID on those img tags. If you've got these recorded in a database, use the primary key (although keep in mind that an HTML elemenet's ID cannot begin with a number, so you should prepend some string, eg. 'img_543'). You could also just send the img path but, if you do that

[jQuery] Re: Hide elements cleanly, not appear then disappear

2009-06-17 Thread Ricardo
If a page is small enough, I usually will hide them in javascript, on $ (document).ready(): myEl = $('#myEl').hide(); myEl.each(...); A good alternative is to add a class to the body/html when javascript is on, see here: http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-

[jQuery] Re: Horizontally scroll a table

2009-06-17 Thread michael
Hmm. Forgot about trying that. The Flexigrid plugin is working like a champ though. Also allows me to resize the table vertically. (I'm stuck developing for 1024x768 and it's rough trying to fit everything on the screen...) On Jun 17, 1:25 pm, liam wrote: > You could also add overflow to the

[jQuery] Submit form with serialize() question

2009-06-17 Thread debussy007
Hello, I submit my form with the $.ajax method and passing it the serialized form. But what about the images inside the form ? Thank you for any help. -- View this message in context: http://www.nabble.com/Submit-form-with-serialize%28%29-question-tp24078650s27240p24078650.html Sent from the

[jQuery] jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread efet
I developed a website using jQuery plugins in part of it. Couple of visitors visited the website with internet explorer complained that some part of the website does not function at all. I have Internet Explorer 8 installed and I dont know how to downgrade it. Can someone test the website and tell

[jQuery] Re: cluetip + livequery (or other rebinding method)

2009-06-17 Thread Karl Swedberg
No problem. You could do something like // define the ct function var ct = function { $('a.attr').cluetip({ cluetipClass: 'rounded', dropShadow: false, positionBy: 'mouse', arrows: true }); }; // call the ct function ct(); Then just pass a reference to ct in the callback. F

[jQuery] Re: cluetip + livequery (or other rebinding method)

2009-06-17 Thread Chris Hall
thanks, Karl. You are the best. It does have a callback, but I'm not sure what I would need to include to have it rebind. Do you have any suggestions? On Jun 17, 1:28 pm, Karl Swedberg wrote: > Hi Chris, > > I went tohttp://www.sprymedia.co.uk/article/DataTablesbut I   > coujldn't find the fn

[jQuery] Re: Cluetip with Image Maps

2009-06-17 Thread Karl Swedberg
I think I fixed a couple bugs with this sort of thing in the Github version. Can you try that one and let me know if it works? http://github.com/kswedberg/jquery-cluetip/tree/master thanks, --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 17, 2009, at

[jQuery] Re: cluetip + livequery (or other rebinding method)

2009-06-17 Thread Karl Swedberg
Hi Chris, I went to http://www.sprymedia.co.uk/article/DataTables but I coujldn't find the fnReloadAjax function in the documentation. Does it have a callback argument? If so, you could rebind the cluetip in there. --Karl Karl Swedberg www.englishrules.com www.learningjquery.c

[jQuery] Re: Horizontally scroll a table

2009-06-17 Thread liam
You could also add overflow to the container div's style. See http://www.w3schools.com/Css/pr_pos_overflow.asp It might be easier than working with more js. On Jun 17, 9:03 am, michael wrote: > Hello all, > > Is there a plugin somewhere that will allow a table to horizontally > scroll within a

[jQuery] Re: jQuery Conference for 2009?

2009-06-17 Thread Karl Swedberg
There will be a jQuery conference in Boston this year, unless something goes horribly wrong. We don't have any information to provide at this time, but will do so when it becomes available. Sorry, I don't mean to leave anyone in the dark. It's just that specific dates, times, number of days

[jQuery] Re: Horizontally scroll a table

2009-06-17 Thread michael
I found one. Flexigrid will scroll horizontally. On Jun 17, 9:03 am, michael wrote: > Hello all, > > Is there a plugin somewhere that will allow a table to horizontally > scroll within a set width?  I could swear I saw this once but can't > find it now.  Basically I'm looking for an Excel-like

[jQuery] (validate) clearing error state / bug with check function

2009-06-17 Thread Iristyle
I have a feature request / and/or bugfix depending on how you'd like to look at the problem. I have a section of a form that is toggled to/from a disabled state based on another control. For the sake of the example, if the 'authentication' checkbox is checked, then a 'username' and 'password' te

[jQuery] Re: get email and send email?

2009-06-17 Thread chris thatcher
just to make things terribly confusing ;) javascript is actually ecmascript, which can be used anywhere an implementation of the scripting engine is available. On the server you can use spidermonkey (a c++ implementation from mozilla), rhino(a java implementation also from mozilla), etc. On the

[jQuery] Re: selector, second to last row of table

2009-06-17 Thread theprodigy
I think I have it working now. It does what it's supposed to, but doesn't really seem to me that it would be all the effecient, should a table have lots of rows (unlikely, but may happen). Here is my code: $('a.moveup').click(function(event) { //Send request to server var href

[jQuery] Re: get email and send email?

2009-06-17 Thread waseem sabjee
JQuery is a JavaScript Library. JavaScript is a form of client side scripting. PHP is a form of server side scripting. they are not the same. JQuery is not a library for PHP, however you can use JQuery and PHP in combination. for example. // this is a JavaScript block of code $(function() { /

[jQuery] live() appears to be invoking handlers at the wrong time under webkit

2009-06-17 Thread Lee Henson
jQuery v1.3.2 rev 6246 (and I just tried with the current nightly build too - same behaviour) Given the following html which basically has a button floated over the top right corner of an image: X When I set up a couple of live handlers: $('.abc .xyz img').live('cl

[jQuery] Re: get email and send email?

2009-06-17 Thread inkexit
Thanks for all your help guys. A recomendation is import because I'm a complete noob when it comes to web programming. FWIW, I do have a lot of experince with C++ though. One question. I thought jQuery was a php library? One poster here said that jQuery will only run in the client's browser,

[jQuery] Re: Animating background color

2009-06-17 Thread Jack Killpatrick
You can use this to animate that: http://plugins.jquery.com/project/color - Jack Apothem wrote: I use jQuery 1.3.2 and tried to use: $('.applied').each(function(){ $(this).css('background-color', '#ff').animate ({backgroundColor: "#000" }, "slow");

[jQuery] Re: i need solution

2009-06-17 Thread waseem sabjee
you were not very descriptive here. are you dealing with server side or client side controls i am amusing you are using a standard select with a textbox $("#myselectbox").change(function() { $("#mytextinput").attr({ value: $(this).val() }); }); On Wed, Jun 17, 2009 at 9:38 AM, ransacker wrote:

[jQuery] Re: Regarding HTML post in jQuery

2009-06-17 Thread waseem sabjee
actually since you are using .NET i would suggest and asp.ent web service for best performance. actually i came across a problem where only IE was taking 3 minutes to load, as it could not handle my ajax post. converting from posting to a page to posting to a web service sorted out my issue. I wi

[jQuery] Re: avoid displaying native browser tooltip on links

2009-06-17 Thread Hector Virgen
You can remove the title attribute from the elements with javascript, and it won't affect the markup (as seen by search engines and when viewing source): > $('[title]').removeAttr('title'); -- Hector On Wed, Jun 17, 2009 at 8:17 AM, Anyulled wrote: > > I have a series of links in my page, al

[jQuery] Re: Cycle removes background image from thumbnails (pager)

2009-06-17 Thread jonrandahl
Nope, Thanks Mike, I tried that and the clearType: false as this is specific to IE. I can send you a link via PM if you send me your email again? Thanks! J

[jQuery] Ajax firing at page load

2009-06-17 Thread Greg F
Hi, This script (below) is firing at page load. Are there any ideas how not to get it to fire until and event happens. Thanks for the help. Greg $(document).ready(function () { if($('#DrainStackDiameter').val() != null){ $('#PowerPipeConfigurations').change(function(){ getResults (); }).change(

[jQuery] avoid displaying native browser tooltip on links

2009-06-17 Thread Anyulled
I have a series of links in my page, all with its title atribute filled. The thing is that I don't want the browser to show this title whenever i hover those links, but still want to have mi titles in the markup Is there any way to do it? thanks a lot for your help

[jQuery] cluetip + livequery (or other rebinding method)

2009-06-17 Thread Chris Hall
Hello everyone. I've searched and the posts about rebinding cluetip and thought livequery would be a good option, but it just seems to work on the first load? Background: I'm using the cluetip plugin along with the dataTable plugin. DataTable is pulling its table info from ajax after the page lo

[jQuery] Re: jQuery syntax

2009-06-17 Thread cz231
Hi, Thanks for the reply. After some investigation, I found that in my xml file it said: So just for kicks I put dataType:"text/xsl" And I think I made progress, but I'm not sure. Because now, it creates the div.panel-previews for each xml node, but for some reason doesn't fill in any of the

[jQuery] jQuery returns [object Object] on a blank page -- i am a newbie please help

2009-06-17 Thread Joaquim
HI, i am trying to build a bookmarklet using jQuery to display a form in an overlay. The overlay displays displays correctly if I execute the code from a file. But once i move it to the href of a link, it returns a blank page with the javascript in the url and [object Object] in the body of the p

[jQuery] Display data from two columns in ONE jqGrid column

2009-06-17 Thread dev
Hello, I'm trying to create a grid, using jqGrid-3.4.4, which can display data from two columns in ONE jqGrid column. One way to achieve this is to create another data column, on the SERVER side, with combined data from required columns, and then assign that column to jqGrid column. Can this be

[jQuery] Display data from two columns in ONE jqGrid column

2009-06-17 Thread dev
Hello, I'm trying to create a grid, using jqGrid-3.4.4, which can display data from two columns in ONE jqGrid column. One way to achieve this is to create another data column with combined data from required columns, and then assign that column to jqGrid column. Can this be done in jqGrid ? Ple

[jQuery] Re: Cycle removes background image from thumbnails (pager)

2009-06-17 Thread Mike Alsup
Try setting the 'cleartypeNoBg' option to true. $ss.cycle({ fx: 'fade', cssBefore: { zIndex: 1 }, timeout: 3000, speed: 1500, fit: 1, cssAfter: { zIndex: 0 } , cleartypeNoBg: true }); On Jun 17, 8:48 am, jonrandahl wrote: > Forgot to menti

[jQuery] (validate) conflicts with (jqmodal)

2009-06-17 Thread Phil909
I'm using both validate 1.5.4 plugin and jqmodal r14 plugin (latest releases) When both plugins are loaded the jqmodal plugin fires only one instance on the first element associated to it. for example: head: http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js"> Jquery code

[jQuery] Horizontally scroll a table

2009-06-17 Thread michael
Hello all, Is there a plugin somewhere that will allow a table to horizontally scroll within a set width? I could swear I saw this once but can't find it now. Basically I'm looking for an Excel-like setup. I have a div that's 990px wide and need to constrain a table within that to keep from go

[jQuery] Re: Palm Pre and jQuery? Is it possible?

2009-06-17 Thread Stephen Sadowski
Andy, I would think that this is probably possible. We have an application out for the Mojo SDK, and as of yet have not seen any real documentation on developing for WebOS. According to Page 6 of the available chapter of WebOS rough cuts from oreilly on Palm's site(http://developer.palm.com/webo

[jQuery] Re: Cycle removes background image from thumbnails (pager)

2009-06-17 Thread jonrandahl
Forgot to mention that if I change the background from transparent to a color, the color works fine! Unfortunately the client likes the opacity of the png so I need the png for everything above IE6 [which has it's own quirks css file to fix things]! Thanks again for looking! J

[jQuery] Re: [validate] array name attribute

2009-06-17 Thread Jörn Zaefferer
This may help: http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_complex_names_.28brackets.2C_dots.29 Otherwise, please provide some code examples, not just the HTML. Jörn On Wed, Jun 17, 2009 at 2:41 AM, warren wrote: > > hi, > > i am having problem with validation if i would be

[jQuery] Re: Converting objects to strings

2009-06-17 Thread gdfox
Thanks Steve that did the trick. Greg Actually, I want to both key/value. On Jun 16, 9:05 pm, Steven Yang wrote: > I think what you want i something likevar params = { >        TotalApartmentsServed: $('#TotalApartmentsServed').val(), > >  TotalWashroomsPerApartment:$('#TotalWashroomsPerApartm

[jQuery] Cycle removes background image from thumbnails (pager)

2009-06-17 Thread jon randahl
Right, here goes: I'm using a modified "jQuery Cycle Plugin - 'goto' Demo 2 (aka: Poor Man's pager)" implementation of the Cycle plugin, this works fine in FF2+, Op9, Saf3+ and Chrome2 but in IE cycle stops the background- image from repeating! As usual I cannot give out a public link due to NDA

[jQuery] trouble using $.get xml

2009-06-17 Thread MattN
I'm having trouble using remote xml feeds. In this example, I'm trying to get product id's from drugstore.com's xml feed. Looking at my console log in Firebug... my get function isn't working. $(function(){ $.get('http://xml.drugstor

[jQuery] getJSON long polling and throbber

2009-06-17 Thread BrianGruber
Hey All! I'm using getJSON to do some cross domain long polling. getJSON calls a PHP script (running lighttpd) and the PHP script waits until a new message is there, then sends the data out to the waiting getJSON request. All works well, but the browser "throbber" keeps spinning while waiting fo

[jQuery] Star Rating

2009-06-17 Thread Robert Ladd
Hello, this is my first post to the group, so be gentle. I recently downloaded the Star Rating plugin and I've got a few questions that I can't seem to figure out for myself. If they are there in the documentation, I apologize for not figuring them out for myself and I will accept being called a

[jQuery] jQuery reallysimplehistory solution

2009-06-17 Thread Paul Dragoonis
Hey there I just wanted to feed back my knowledge and experience with reallysimplehistory (RSH) and jquery integration. There were some existing docs but nothing matched the problems i was looking for. Firstly, you may think you need to integrate jquery (and json) with RSH as per their documentat

[jQuery] i need solution

2009-06-17 Thread ransacker
how to set selected optionvalue in activeDropDownList in yii to an activeTextField

[jQuery] Problem in JQuery_intellisense at VS-08

2009-06-17 Thread Ofer Hashimshony
Hey people I have a bug in Jquert intellisense When I add the reference to the intellisense file "(jquery-1.3.2- vsdoc.js)" It worked But everything when I add [code] [/ code] To the page the Jquert intellisense Disappeared . What to do? [code] $(document).ready(function(){ $("#btn1").t

[jQuery] [validate] array name attribute

2009-06-17 Thread warren
hi, i am having problem with validation if i would be using an array name attribute Name: * Address: * Company Name: * Company Address: * with all fields required, jquery validate is not validating this one. how would i get this working? thanks..

[jQuery] Problem in JQuery intellisense at VS-08

2009-06-17 Thread Ofer Hashimshony
Hey people I have a bug in Jquert intellisense When I add the reference to the intellisense file "(jquery-1.3.2-vsdoc.js)" It worked But everything when I add To the page [code] / code , the Jquert intellisense Disappeared . What to do? [code] $(document).ready(function(){ $ ("#

[jQuery] jquery like navigation

2009-06-17 Thread scvinodkumar
Hi, i would like to implement myyearbook.com navigation in my site. You can see this at the home page itself. Could you please tell me what type of plugin they used and how to implement it?

[jQuery] myyearbook navigation

2009-06-17 Thread scvinodkumar
Hi i would like to implement the myyearbook like navigation.(http:// www.myyearbook.com/) You can see this at the home page itself. When you click the up or down arrow key, the content being change in the right hand side. Please tell me how they have implemented it and what jquery plugin they h

[jQuery] Issue using Scrollpane & simple show / hide / toggle scripts together

2009-06-17 Thread tmc
Hi there, Hopefully someone can help, I have been using Kelvin Luck's scrollpane script on a development site and then added in a simple show/hide/ toggle script to change the page's content. This now seems to stop the scroll bar from being overwritten by the scrollpane script. Can provide either

[jQuery] Cluetip with Image Maps

2009-06-17 Thread Robert
Hi, I have a small problem with image maps and clueTip. Client requires 4 map areas on an image (plus the image itself) to trigger cluetip. The image itself triggers a sticky clueTip with now Title 2 Map Areas trigger a standard clueTip with custom width with No Title 2 Map Areas trigger the sa

  1   2   >