[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-04 Thread Ricardo
There is no point in validating via AJAX unless something related to sessions needs to be checked. You should validate twice, once client- side in javascript and again on the server. The jQuery Validation plugin should cover your needs for this: http://docs.jquery.com/Plugins/Validation On Aug 4

[jQuery] Re: hide() does not hide span in IE, but does in FF

2009-08-04 Thread rupak mandal
hi, if you use div instead of span I think it will work. On Tue, Aug 4, 2009 at 8:25 PM, msmaeda wrote: > > Hi, > > With the code below, I am having an issue that only seems to occur in > IE. The issue is that the "payer_pane" span should be hidden unless > the "NEW" option is selected in the "

[jQuery] Re: Superfish vertical menu, sub-menu item overlap problem

2009-08-04 Thread rupak mandal
Hi BenI think the problem is off using position relative, change in css .menu li:hover { visibility: inherit; position:relative; } On Wed, Aug 5, 2009 at 3:16 AM, Ben wrote: > > In an ideal Superfish vertical menu setup, you match the width of the > first with the offset of the second, so

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread rupak mandal
Hi anshu you have to call "initialize()" function after the initialization of "dialog" div. Basically what's happen hear calling of google map api before the initlalization of "map_canvas" div. Better option is to use "SettTimeout" function instead of "onload" . $().ready(function() {

[jQuery] Re: Should I keep away from other plugin dependencies?

2009-08-04 Thread Alexandre Magno
I have the question when I was thinking in using domec(http:// code.google.com/p/jquery-domec/), This plugin I think have a wider use in plugin for make the code more legible not coding dom elements like strings, I suffer for that, the code it`s less legible and bad for maintenance, the plugin is

[jQuery] Should I keep away from other plugin dependencies?

2009-08-04 Thread alexanmtz
Hello everyone, I always enter here to deal with technical issues, but today it`s a issue that become philosophical. I wish to make a plugin that needs to use others plugins, but what about the good principle to keep the codebase clean? One of the best things in jQuery is that you keep the core

[jQuery] Re: JQuery Scrollbar value

2009-08-04 Thread Karl Swedberg
Hi Paul, Try $(window).scrollTop() --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 4, 2009, at 4:37 PM, Paul van Hoven wrote: I can't figure out how to check with jquery how deep a user has scrolled into a page. Suppose you got a webpage with 3000px

[jQuery] binding "text" event

2009-08-04 Thread park
Just noticed that a "text" event can be binded to an input: $(’:text’).bind(’text’, function () {console.log($(this).val()}); But it is not documented here. http://docs.jquery.com/Events/bind. Google fails to help either. This event turns out extremely useful when handling Chinese input, but do

[jQuery] Re: function gt() is not working for me

2009-08-04 Thread Karl Swedberg
Hi Julio, The .gt() and .lt() methods were deprecated (http://docs.jquery.com/Release:jQuery_1.2#DOM_Traversing ) and subsequently removed from jQuery quite a while ago. In their place, you can use the .slice() method: http://docs.jquery.com/Traversing/slice#startend --Karl Ka

[jQuery] Re: Custom Attributes - Beginner tip

2009-08-04 Thread Jules
jQuery support custom attributes, may be you can post a sample? Anyway, this works $(document).ready(function(){ alert($("[custom='test']").length); }); On Aug 5, 10:04 am, Miket3 wrote: > One issue I ran across while learning jquery was that I often wanted/ > needed a way to tell jqu

[jQuery] Superfish as popup menu?

2009-08-04 Thread ryantxu
I am in the process of replacing a YUI menu implementation with Superfish. (it is great! thank you thank you!) Is there an easy way to implement a popup menu? Something like: http://developer.yahoo.com/yui/examples/menu/example07_clean.html thanks for any pointers ryan

[jQuery] Superfish vertical menu, sub-menu item overlap problem

2009-08-04 Thread Ben
In an ideal Superfish vertical menu setup, you match the width of the first with the offset of the second, so the menu appears directly to the right of the primary navigation. I'm looking to have that over- lap a little, and it's working fine in FF. In IE6 and IE7 the first submenu item appears o

[jQuery] function gt() is not working for me

2009-08-04 Thread Julio Cesar
When try to refine a jquery set with last elements using the function gt() it just not work. Here is an example, it was tested in firefox 3.5 and jquery 1.3.2. I had placed 3 empty fields, with jQuery I asign an "x" value for all of them. Then I try to asign a "y" for the last two fields using th

[jQuery] tablesorterpager and columnmanager not playing well together

2009-08-04 Thread jeff_white...@yahoo.com
Hi all, Like the subject says, I've got a few plug-ins not cooperating. My page has a table that displays data and when allowing my user these two options, the columnmanager's selected columns don't maintain across pages. What happens is either an extra row of data is shown with no header or an e

[jQuery] Custom Attributes - Beginner tip

2009-08-04 Thread Miket3
One issue I ran across while learning jquery was that I often wanted/ needed a way to tell jquery to get data for the current element from a related element. jQuery immediately tends to be friendly when you need to work with a class of elements via the CLASS attribute, or a specific element via th

[jQuery] Are the OAuth Consumer Token and Secret assigned to a specific Server IP address

2009-08-04 Thread MECarluen-TwitterGroup
Hello Gurus- quick question, are the Consumer Token and Secret assigned to a specific Server IP address? I am currently switching my servers/hosts to a different IP address, but with same domain name. It seems like Oauth returns a "Failed to validate oauth signature and token" when using the same

[jQuery] documentation of sugar methods

2009-08-04 Thread Ben Atkin
I noticed what I consider to be a bug in the documentation, but rather than quietly fix it, I'm posting to this group because I think it might be part of a larger issue. The bug is in the documentation of $.fn.serialize() and $.fn.serializeArray(). serialize(), unbeknownst to me until I looked at

[jQuery] Show How many text box empty How many text box filled

2009-08-04 Thread bharani kumar
Hi , Basically am doing something like validation function , Having form with 5 text box , some time user many forgot to enter all field and go for submit , so there i want to show the message Like 3 textbox need to be fill , please fill fields , How to do this sort of functionality , Thanks

[jQuery] Table sorter

2009-08-04 Thread solow
Hey, I'm using table sorter. http://tablesorter.com/ Now, this is great and all, but it doesn't seem to work in dynamically loaded pages. Does anyone know a solution for this problem? I hope so.. thanks :)

[jQuery] replaceWith()

2009-08-04 Thread ProfCrazyHorse
I want to replace one element with another, and keep the element contents intact. For example, here, I'm replacing all h2 elements with h3's: $("a #replaceWith").click(function () { var h2Text = $("h2").text(); $("h2").replaceWith("" + h2Text + ""); }); I have two questions. First, how c

[jQuery] Re: Show/hide on radio button click

2009-08-04 Thread Jules
This should works not sure about the performance though $(function() { $('p').next('ul').hide(); //hide donation choice children $('input[name="donate_by"]').click(function() { //donation choice radio button click $(this).next().css('font-weight','

[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-04 Thread rem
I've done some digging around and this doesn't seem to be a very good practice after all... I'm looking further for the best output but would appreciate your ideas as well. Thank you. On Aug 4, 10:58 pm, rem wrote: > Hello friends, > > I am trying to validate a form using jQuery and PHP. The ac

[jQuery] Show/hide on radio button click

2009-08-04 Thread Magnificent
Hi all, I'm trying to do a show/hide on a radio button click and I do have it working, but I'd like to make it more...extensible/independent of hard- coding children elements to show hide. My dummy html structure is: By Cause: Please select cause(s) below: Cause 1 Cause 2 Cause 3 By Found

[jQuery] Re: xpath not returning objects

2009-08-04 Thread Jules
jQuery does not recognise @ as attribute indicator. Just remove the @ from your code and enclose the attribute value with ': $("input:checkbox[name='media_type']").click(function() { if (this.checked == true) { alert('checkbox true');

[jQuery] Re: $.jgrid is undefined with jqgrid plugin

2009-08-04 Thread Josh Nathanson
I think that plugin is broken. I tried it a couple of weeks back and got the same error, tried to debug it for a while, and gave up. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Massimiliano Marini Sent: Tuesday, August 0

[jQuery] Re: html() does unexpected escaping:

2009-08-04 Thread Michael Geary
You're right that the src attribute is being escaped, but it's not jQuery doing it. When in doubt, take jQuery out of the equation and find out what the browser does natively: var div = document.createElement( 'div' ); div.innerHTML = ''; alert( div.innerHTML ); I didn't test other

[jQuery] Re: IE click event handling problem

2009-08-04 Thread Ricardo
You could use a opacity of 0, it's not that ugly of a hack. And you could use this simple logic instead of ifs and is()'s: var cb = this; //checkbox .click(function(){ cb.disabled = !cb.checked && !cb.disabled; cb.checked = !cb.disabled && !cb.checked; return false; }); cheers, ricardo

[jQuery] xpath not returning objects

2009-08-04 Thread Old Orange Juice
I have a bunch of divs with the same classname, 'mediafield': Slug: Big Blurb(Video) Big Blub(short content) Big Blub(Audio) Photo Uri(images): and I have this jquery code in my header: $(document).ready(function() { $("input:checkb...@name=media_type]").click(function() {

[jQuery] Re: jquery cycle with multiple image

2009-08-04 Thread Charlie
I don't think anyone can help without seeing the problem you are having. There is obviously something quite wrong with your implementation, can you provide a link? iktiar2...@gmail.com wrote: Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make

[jQuery] Re: jQuery.sheet v0.5, any thoughts, jQuery praise

2009-08-04 Thread Richard D. Worth
Great job with the ThemeRoller ready integration. I'd love to see a ThemeSwitcher on the demo page: http://docs.jquery.com/UI/Theming/ThemeSwitcher - Richard On Tue, Aug 4, 2009 at 3:33 PM, Robert wrote: > > Hey Guys, > I wanted to get your thoug

[jQuery] Re: Tablesorter plugin - grouping rows and sorting per group?

2009-08-04 Thread aquaone
Tablesorter doesn't support that. You could do it as separate tables with no gaps between them... but that's as close as you'll get. If you need linked sorting, e.g. clicking the header of one table sorts all tables, you'll need something like this: $(document).ready( function(){ $("table.table

[jQuery] Re: html() does unexpected escaping:

2009-08-04 Thread Cesar Sanz
which one is scaped?? I see that src and class, both has "" - Original Message - From: "mikerobi" To: "jQuery (English)" Sent: Tuesday, August 04, 2009 9:18 AM Subject: [jQuery] html() does unexpected escaping: In the following example: the src attribute is escaped but not the c

[jQuery] Re: Multiple external controls...

2009-08-04 Thread Gingah
Hi Karega, I realize it's been almost a month since your question, but for the archive, here is an answer: I accomplished using multiple carousels with a external control on each one by setting specific ID's for every part of the jQuery initalization. For example: function mycarousel_initCallba

[jQuery] jquery cycle with multiple image

2009-08-04 Thread iktiar2...@gmail.com
Hi hope all are fine :) like this demo http://malsup.com/jquery/cycle/int2.html , i need make cycle image slide-show. there will be 3 image, not 1 image, like the demo. i tried do it myself. but my whole 3 image , moving :( . I need to move one image , not whole 3 image. like this demo, whe

[jQuery] jCarousel External Control as Pagination

2009-08-04 Thread Gingah
Hi there (tried posting this earlier without result), I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I "only" need to edit the javascript file, but hav

[jQuery] $.jgrid is undefined with jqgrid plugin

2009-08-04 Thread Massimiliano Marini
Error: $.jgrid is undefined Source file: http://localhost/test/js/jquery.jqGrid.min.js I don't understand why I get this error. http://trirand.com/jqgrid/jqgrid.html Cheers

[jQuery] Tablesorter plugin - grouping rows and sorting per group?

2009-08-04 Thread Crazy Serb
In using Tablesorter plugin, I have run into an challenging issue. What I am looking to do is group certain rows in a single table into two different groups, have a blank row between them and be able to sort based on columns that apply to both groups of rows but without the rows from one group ac

[jQuery] Fading Out a Flash Object - Strange Behavior

2009-08-04 Thread orandov
I am trying to fade out a Flash embed object and fade in regular Html. For some reason the callback of the fadeout method gets fired multiple times, before the fade out has finished. The result is that the Html gets appended multiple times in the callback function and it blinks an extra time.

[jQuery] Fwd: jCarousel External Control as Pagination

2009-08-04 Thread Ole Henrik Hunstad Vik
Hi there (tried posting earlier, Googles Groups dont seem to work that well currently), I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I "only" need to

[jQuery] hide() does not hide span in IE, but does in FF

2009-08-04 Thread msmaeda
Hi, With the code below, I am having an issue that only seems to occur in IE. The issue is that the "payer_pane" span should be hidden unless the "NEW" option is selected in the "relationship_person_id" select list. In IE, the payer_pane appears despite what is selected in the "relationship_per

[jQuery] Malsup Form Plugin and buttons tags

2009-08-04 Thread NickUK
I'm using 2.28 from http://malsup.com/jquery/form/#download. I'm submitting a form using this plugin and that works fine however I use tags and these do not seem to be submitting with the rest of the fields. Has anyone managed to submit a button? Nick

[jQuery] jCarousel External Control as Pagination

2009-08-04 Thread Gingah
Hi there, I have a couple of problems using jCarousel, and was hoping someone here might lead me to a solution. First of all, can I change the way the External Control function works? I am guessing that I "only" need to edit the javascript file, but having little knowledge of it, I chose not to.

[jQuery] jQuery.sheet v0.5, any thoughts, jQuery praise

2009-08-04 Thread Robert
Hey Guys, I wanted to get your thoughts on jQuery.sheet v0.5 - Demo - and as well the themeRoller integration. I've spent a bunch of time refining the code for use with most web browsers. There probably isn't an aspect of the plugin that wasn't effected. Also, I wanted to praise the jQuery tea

[jQuery] jQuery.ajax custom parameter to success callback function

2009-08-04 Thread rem
Hello friends, I am trying to validate a form using jQuery and PHP. The actual filtering is done by a PHP class which receives the data asynchronously from jQuery and if it finds the form field data invalid, returns an error. So, I am serializing the form and then split it into array. I'm loopin

[jQuery] JQuery Scrollbar value

2009-08-04 Thread Paul van Hoven
I can't figure out how to check with jquery how deep a user has scrolled into a page. Suppose you got a webpage with 3000px in height but the actual viewport is just 768px high. So the user has to scroll down to see the rest of the page. How do i get the current vertical scroll value of the page.

[jQuery] html() does unexpected escaping:

2009-08-04 Thread mikerobi
In the following example: the src attribute is escaped but not the class attribute. I wouldn't expect any escaping. $('').html())

[jQuery] jqGrid with c#

2009-08-04 Thread achu
Hello Friends, I’m using jqGrid in ASP.NET. jqGrid is literally good. As of now, I’m using Handler(ashx) or WebService(asmx) to convert the DataTable into JSON and display in the Grid. Can I use c# code behind and bind the Data? I mean c# method convert the DataTable into JSON? I’m trying, if any

[jQuery] Re: Chrome compatibility problem (form submit button value not sent)

2009-08-04 Thread Philip
I have the same problem using jQuery 1.3.2 and Chrome 2.0.172.39. So my site is broken :( On Jul 30, 3:29 pm, Hardip wrote: > http://www.globalautohits.com/test/jquery-test.html > > Tested it in Opera, FF 3.5 - there, the result shows that the submit > button was sent too. however, in Chrome, i

[jQuery] Re: Get append() result

2009-08-04 Thread Brad
Minor correction I now have var row = "..."; return $(row).appendTo('#docs tbody')

[jQuery] Re: Get append() result

2009-08-04 Thread Brad
Thanks. That is cleaner than my workaround. I had var row = "..."; $('#docs tbody').append(row); return row; I now have var row = "..."; return row.appendTo('#docs tbody') On Aug 3, 4:52 pm, James wrote: > How about: > > $row = $("..."); > var newrow = $row.appendTo("#docs tbody"); > > On A

[jQuery] Ajax call? Possible?

2009-08-04 Thread Mat
Ok, so I am trying to load an external html page into a div on my site. I am using a Panic Coda-style jQuery scroller which means my entire website is on one page. To optimise loading times, I would like the 'pages' only to load when a visitor clicks the navigation tab for it. Is some sort of sim

[jQuery] Re: Ajax response attached file

2009-08-04 Thread David
Would it be a proper solution to use a hidden iframe and set the 'src' attribute with the file URL? That is, in the Post method AJAX request, in its callback function, set the attribute. On 4 ago, 20:12, elubin wrote: > Don't do it in ajax.  setup the link as a regular tag, and the > browser sh

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-04 Thread CanisVoriCanis
I'm not using the superfish menu but if your looking for example code where I had to overcome the same problem. www.jasonsGuns.com - Search - FFL Services I know an example can always help.

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread rubycat
Jack, thank you very much for your help--I really appreciate it. For anyone else following this thread, it looks like this: #alphalist { display:none; } ...should now come out in order to have content display if javascript is disabled.

[jQuery] Re: dropdown menu does not drop1

2009-08-04 Thread amuhlou
in template.css, line 161, #pillmenu has overflow:hidden. remove that and your menu shows up On Aug 4, 9:59 am, tilton27 wrote: > Hi! > > I installed superfish on this sitewww.itipensa.com. The institutions > is suppossed to be a drop down menu, but it just doesn't drop. > > It looks like it ge

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Anush Shetty
On Tue, Aug 4, 2009 at 9:23 PM, Liam Potter wrote: > > can you post an example? > > > anush wrote: > >> Has anybody tried embedding Google Maps inside jqModal ? >> >> The maps aren't getting displayed properly. >> >> $().ready(function() { >>$('#dialog').jqm(); >> }); >> >

[jQuery] [Linkselect] Change function fires when using "replaceOptions"

2009-08-04 Thread skube
Ok, I think I have one last outstanding problem with Giva Labs' awesome Linkselect plug-in. I'm wondering if it is a limitation of the plug-in or if I am simply doing something wrong. I am using one select to update another and everything works perfectly. However, I am finding the "change" functi

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread Jack Killpatrick
Ah, I see. Since you have includeAll: false, it required a different workaround, since that forces the first available letter's contents to show. I grabbed a copy of your test and verified that this works: $(function(){ var clicks = 0; $('#alphalist').listnav({ includeAll: fals

[jQuery] Re: Get this in ajax

2009-08-04 Thread James
$('.del').live('click', function() { var str = $(this).serialize() + '&js=true'; var $this = $(this); // set variable here $.ajax({ url: $(this).attr('action'), data: str, beforeSend: function() { },

[jQuery] Re: scrolling above the error field to include the label

2009-08-04 Thread hiester
I'm using it, but it doesn't work in IE6 on my form--it's a long and fairly complex form. Works great in Firefox, but unfortunately this is an intranet app that has to work on IE6. On Aug 4, 2:10 pm, elubin wrote: > We use scrollTo plugin from Ariel Flesler.  Works great. > >  http://flesler.blo

[jQuery] problems with async ajax call in ie

2009-08-04 Thread csetzkorn
Dear all, Because IE behaves differently to FF I have to implement a ‘mother function’ that only returns a value after an ajax call finished. Basically this works fine in FF: HTML: Script: $(document).ajaxStart(function() { $.blockUI({ message: 'hello', overlayCSS: { backgroundColor: 'green

[jQuery] Re: IE click event handling problem

2009-08-04 Thread ak732
So, although it's an ugly hack, I'm working around the issue by setting the background of the overlay element to #fefefe and giving the element an opacity of 0.01. Which works. On Aug 4, 2:12 pm, ak732 wrote: > Thanks elubin.  Actually, I had already tried that.  I set z-indexes > for the paren

[jQuery] Re: IE click event handling problem

2009-08-04 Thread ak732
Thanks elubin. Actually, I had already tried that. I set z-indexes for the parent, the checkbox and the anchor overlaying the checkbox (actually, you can see some remaining, commented out code from when I tried it). Anyway, z-index tweaks didn't appear to fix the problem. I just now tried sett

[jQuery] Re: Ajax response attached file

2009-08-04 Thread elubin
Don't do it in ajax. setup the link as a regular tag, and the browser should handle it for you.

[jQuery] Re: scrolling above the error field to include the label

2009-08-04 Thread elubin
We use scrollTo plugin from Ariel Flesler. Works great. http://flesler.blogspot.com/2007/10/jqueryscrollto.html

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2009-08-04 Thread Ed F.
hi Mike, thank you for replying. your plugin is awesome. On thing, in your example, you only have one slideshow on the page, I have multiple slideshows on the page with the updating count. and I can get the updated count to work for the firat instance of the slideshow but it breaks for the res

[jQuery] Re: IE click event handling problem

2009-08-04 Thread elubin
try raising the z-order of the anchor

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Anush Shetty
On Tue, Aug 4, 2009 at 10:49 PM, Paulodemoc wrote: > > What are the problems with the maps? > Only a part of the map is visible. Rest of it is grey .. the map tiles aren't loading

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Paulodemoc
What are the problems with the maps? On Aug 4, 12:17 pm, anush wrote: > Has anybody tried embedding Google Maps inside jqModal ? > > The maps aren't getting displayed properly. > >  $().ready(function() { >                     $('#dialog').jqm(); > > }); > > Would be great of somebody could help

[jQuery] IE click event handling problem

2009-08-04 Thread ak732
I'm working on a small plugin that extends a checkbox to behave as if it has 3 states. Basically it just adds an anchor above the underlying checkbox, intercepts mouse clicks, and cycles the checkbox between: disabled + unchecked enabled + unchecked enabled + checked It works fine in F

[jQuery] Re: On mouse events / style switch

2009-08-04 Thread Aaron Johnson
It was my understanding that toggle required two clicks. Thanks for your help. On Tue, Aug 4, 2009 at 9:09 AM, Liam Potter wrote: > > $("div").toggleClass('className'); > > http://docs.jquery.com/Main_Page > Everything you need right now is in there, only ask questions if it isn't > on there, o

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Just local machine right now...nothing online unfortunately. I am using CakePHP which allows me to add the js files I need for each page individually. So I have 1 page that has a horizontal slider like the one on the Apple MAC site..which works if I access the page directly. But when I load that

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
Do you have an online example so I can get a better picture of just what you are trying to do? Dave Maharaj :: WidePixels.com wrote: Yes I have. Might be dumb of me but I will ask. Originally the


 and  the needed js files were on the page specifically 

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Yes I have. Might be dumb of me but I will ask. Originally the and the needed js files were on the page specifically needing it. But now that I am loading that page into one... Where do the scripts and files go? Do they now go to the page that they will be loaded into or do they stay

[jQuery] Re: On mouse events / style switch

2009-08-04 Thread Liam Potter
$("div").toggleClass('className'); http://docs.jquery.com/Main_Page Everything you need right now is in there, only ask questions if it isn't on there, or google. I'm not trying to be an ass but too many people expect to have their hand held while learning anything, and being told the answers

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
Have you updated the original script to my one? function _ajaxInit() { $("a.group").fancybox( { 'overlayShow': true }); }); window.onload = function () { $('.sliderGallery').each(function(){ var id_parts = $(this).attr('id').split('_'); var id =

[jQuery] On mouse events / style switch

2009-08-04 Thread Aaron Johnson
Hi Is it possible to do an 'on click' event that changes a css selector, then an 'off click' that switches it back? I am working on a touch screen app and need to replicate a css hover state. If anyone can point me towards an example or a tutorial, I 'd really appreciate it. Thanks! A

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
3 Errors syntax error [Break on this error] });\n (line 167) syntax error [Break on this error] });\n (line 6) _ajaxInit is not defined [Break on this error] _ajaxInit();\n That's what I see now but still nothing good happening. dave -Original Message- From: Liam Potter [mailto:radi

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread Liam Potter
can you post an example? anush wrote: Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); }); Would be great of somebody could help me out

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
yeah, use the modified script and add _ajaxInit(); to the callback; $('a.profile_data').click(function(){ var url = $(this).attr('href'); //alert(url); $('#loadHere').fadeOut('fast', function(){ $('#loadHere').load(url, function(){

[jQuery] Form validation errorplacement

2009-08-04 Thread Ratheesh
Hi, In Jquery Form validation, the errorplacement function executes for each and every control in the page. Means It fires for controls with no validation error also.Is this the default behaviour for form valiadtion..?. How can i restrict the errorplacement function to be called only for controls

[jQuery] Re: Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
Nope...no go. All I have for the "tabs" are just straight links calling the script to load the page. $('a.profile_data').click(function(){ var url = $(this).attr('href'); //alert(url); $('#loadHere').fadeOut('fast', function(){ $('#loadHere').load(url, fun

[jQuery] Re: Form Validation

2009-08-04 Thread Ratheesh
any 1 for help.? On Aug 3, 4:30 pm, Ratheesh wrote: > Hi, > It is specified in the documentation as > > "After submitting an invalid form, the first invalid element is > focused, allowing the user to correct the field. If another invalid > field, that wasn't the first one, was focuse

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

2009-08-04 Thread Matt Kruse
On Aug 4, 10:18 am, Liam Potter wrote: > It's down to the way IE handles tables, nothing to do with a jquery bug > (people are so quick to shout out that word). > Boiled down, you can't do a lot of things to tr's in IE, and display > none is one of the things you can't change. Then why does the

[jQuery] Re: Newbie Question

2009-08-04 Thread Liam Potter
function _ajaxInit() { $("a.group").fancybox( { 'overlayShow': true }); }); window.onload = function () { $('.sliderGallery').each(function(){ var id_parts = $(this).attr('id').split('_'); var id = id_parts[id_parts.length - 1]; var container = $('#sli

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

2009-08-04 Thread Liam Potter
It's down to the way IE handles tables, nothing to do with a jquery bug (people are so quick to shout out that word). Boiled down, you can't do a lot of things to tr's in IE, and display none is one of the things you can't change. - Liam Fontzter wrote: bump? Can anyone confirm this? On J

[jQuery] Google Maps inside jqModal

2009-08-04 Thread anush
Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); }); Would be great of somebody could help me out

[jQuery] Re: [linkselect] Positioning menus off bottom of window

2009-08-04 Thread Dan G. Switzer, II
Sherri, You can use the open callback to handle repositioning the container if you wish. The callback gets 4 arguments: $container, $a, $selected, $title The $container argument is a jQuery object referencing the dropdown. You could just offset it's top position by XXX amount to move the box up.

[jQuery] Newbie Question

2009-08-04 Thread Dave Maharaj :: WidePixels.com
I have a standard php page with some jquery going on its working fine. Now I want to take that page and load it into a div on a different page (tabbed layout pretty much) but when I do the script no longer works when the page loads into the div. SCRIPT CURRENTLY ON THE PHP PAGE THAT WORKS WHEN

[jQuery] Re: How to access an iFrame ID from within

2009-08-04 Thread Cesar Sanz
Can you formulate your question a little better ?? - Original Message - From: "Tommy1402" To: "jQuery (English)" Sent: Monday, August 03, 2009 12:22 AM Subject: [jQuery] How to access an iFrame ID from within Sorry if report I have an iFrame it loads a content, how can I

[jQuery] [validate] scrolling above the error field to include the label

2009-08-04 Thread hiester
Hi I have my labels on top of the fields and when an invalid field is found, validate moves the focus to the first invalid field, but when it does that the user can't see the label. How can I make it scroll up just a tiny bit to include the label? Also, wondering if anyone has implemented scrolli

[jQuery] dropdown menu does not drop1

2009-08-04 Thread tilton27
Hi! I installed superfish on this site www.itipensa.com. The institutions is suppossed to be a drop down menu, but it just doesn't drop. It looks like it gets stuck in somewhere and i just am not able to figure what is wrong. Please help me fix it. Thanks in advavnce.

[jQuery] jquery tablesorter + pager not working together

2009-08-04 Thread sosna
Hello I am using tablesorter + pager and almost everything works fine. I got one small problem. When i sort table sometimes height of the table changes (because some values in columns are bigger and need 2 rows to display them) but the position of the div containing pager does not change. It wor

[jQuery] jquery autocomplete parameter query

2009-08-04 Thread anush
When I use mustMatch: true in my function, I am unable to select a few of the options. Any reason for that ? - Anush

[jQuery] Re: Check if element is shown with show()

2009-08-04 Thread Charlie Tomlinson
or add an "acitve" class when one is opened, then do $("active").hide().removeClass("active") when click another one. Only "active" will be visible rupak mandal wrote: If you assign same class to all the paragraph. so on clicking on menu you have to hide to the class element and show the part

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

2009-08-04 Thread Fontzter
bump? Can anyone confirm this? On Jul 29, 9:52 am, Fontzter wrote: > I put together a simple case to demonstrate this:http://jsbin.com/ijini > > This works in other browsers but not IE8. > > Thanks, > > Dave

[jQuery] Re: jquery 1.3.2 error with $(':inp...@name=submit]')???

2009-08-04 Thread micorreo13
I did it!! Thank you On Aug 2, 10:45 pm, John Resig wrote: > Just remove the @ and it'll work fine. > > --John > > On Sun, Aug 2, 2009 at 12:07 PM, micorreo13 wrote: > > > I was using jquery-1.2.6 and now, I started to use jquery-1.3.2, and I > > get my first "difference": when I use the wrapp

[jQuery] Re: File upload using HTTP PUT method

2009-08-04 Thread russellneufeld
Perhaps the jQuery mailing list wasn't the best place to post this question. Can anyone recommend another active javascript mailing list which might be able to answer this? Thanks.

[jQuery] Use of jQuery Data method at server side

2009-08-04 Thread PBalanagendra
Hi, I am trying to get rid of using hidden variables and use the jQuery Data method [http://docs.jquery.com/Core/data#name] to store certain data. Following are my questions 1. Is there a way to get these values at the server side during postback? 2. If yes, can this data be manipulated at the s

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

2009-08-04 Thread John Simons
You should be able to replicate this on http://malsup.com/jquery/block/#page Go to the page above and click on "Default Message" button and make sure you don't move the mouse cursor. You should see that the cursor remains a hourglass even after the page comes back, to get the correct cursor you h

  1   2   >