On Jan 26, 2008 4:33 AM, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> ...
> As soon as I changed it to a normal text link, it worked perfectly!
> ...
I was trying to use shadowbox on image link like:
and can't get it right, until,
I changed the shadowbox-jquery.js, line 99 (from the src one) f
David,
Thanks for the reply. I had no idea that a new element could be created as
you've shown. That's pretty cool, from a code standpoint. But if it's
faster the way I've been doing it, I'll continue in that fashion.
Matt
How about
$("").attr({id:"myid",
name:"myname"}).val("foo").appendTo(this);
I think that would work although the way you have it would be faster.
Most elements you could just say $("") to create a new one but
in IE the input requires the type be set. So you have to specify the
type in the inita
Hi
I am planning to use the tableSorter 2.0 plugin by
But just wondering if there is a way to do the following with this:
Right now once we have tableSorter set up...we can toggle the columns.
click once do asc, click again do desc.
But I want the user to be able to just click either up arrow
I just moved over to jQuery yesterday and I'm trying to port my
Mootools slide code. The Mootools slide was very smooth but I like
jQuery's syntax and philosophy better.
I was comparing Interface.SlideToggleUp (http://interface.eyecon.ro/
docs/fx) and jQuery.slideToggle (http://docs.jquery.com/E
Hi
I am planning to use the tableSorter 2.0 plugin by
But just wondering if there is a way to do the following with this:
Right now once we have tableSorter set up...we can toggle the columns.
click once do asc, click again do desc.
But I want the user to be able to just click either up arrow
This is a known JQuery bug...
This has to do with FF rendering tables compliant to the CSS2 spec for
"display:"... in FF , , and are given display values
of "table", "table-row", and "table-cell" respectively. In IE they
all get "block".
JQuery's show/hide animation methods switch "display:" b
I'm using the blockUI plugin and it's tied to a form submit. When I click
the submit button in IE7, blockUI goes into effect, but the form doesn't get
submitted and the page just sits there with blockUI running. It works fine
in Firefox though.
$('input.go').click(function() {
$.blockUI();
}
In my case I have a list of elements (5 images), with 2 elements slide
animating at the same time - one hiding and one showing. When 2 elements are
in the process of animating the list of elements below the animating
elements will 'jitter' up and down.
Has anyone else experienced this and if so
in the current jquery-version 1.2 you have to unbind mouseenter and
mouseleave.
this.table.find('> tbody >
tr').unbind('hover').unbind('mouseenter').unbind('mouseleave').removeClass('gt-
hover')
It certainly does, thanks very much Alexandre, makes sense now :)
On Jan 24, 12:47 pm, Alexandre Plennevaux <[EMAIL PROTECTED]>
wrote:
> in that particular bit of code, it's useless (since he did not use
> it :) ).
>
> but let me point you to an example where passing the event to the
> function i
Hello,
When my form is submitted, I want to add a couple of hidden form fields to
the DOM. I know that I can accomplish the task like so:
$("#myForm").submit(function() {
var str = "";
$(this).append(str);
});
But that just doesn't "feel" right to me. Is there a .new() method or
somethi
I think I over simplified this. There will need to be a few other changes.
But you see where I'm going...
Of course there are more restrictions than one might expect from a
> traditional jQuery plugin (like not being able to pass options on a per-call
> basis), but it's a pretty minor change. F
>
> I'm putting the finishing touches on a media viewer application that I
> coded up recently (think Thickbox). It can be used with jQuery or any
> other library. I created an adapter for jQuery, and I thought that
> somebody on this list might be interested.
>
>
Michael,
I really love what you'
thanks mike i'll try that and get back to you guys! you're all
great
On Jan 25, 3:40 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > image and have it say 'read article >' and a user could click it. then
> > when the image fades, the link does also, until the next image fades
> > in, with it'
Hi
I am planning to use the tableSorter 2.0 plugin by
But just wondering if there is a way to do the following with this:
Right now once we have tableSorter set up...we can toggle the columns.
click once do asc, click again do desc.
But I want the user to be able to just click either up arrow
How i can handle with jquery the "uncaught exception: [object Object]"
firefox message when no response (json in this case) is recived? My
problem is that all the rest of the script stop work!
This is part of the script
$.ajax({
url: "weather.php",
action: "get_we
That looks great!
Thanks,
Rick
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl
> Swedberg
> Sent: Friday, January 25, 2008 4:44 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: Announce: clueTip Plugin update (0.9.5)
>
>
>
jQuery won't talk directly to your Access database. This may be why you've
had trouble finding help with that. jQuery sits on the client and your
database is on your server. You need a server-side script to open the
database and create a dynamic pages (html, xml, or json) with data for the
client.
Browsers do the unzipping in native code. You'd never notice the time it
takes, even on a fairly slow machine.
The packed version requires a time-consuming unpack operation in JavaScript
code, whether it's zipped or not.
-Mike
_
From: Alexandre Plennevaux
arf my bad, good catch ka
Hey Rick,
Thanks for the suggestion. I just put one up (default style example #9):
http://plugins.learningjquery.com/cluetip/demo/
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jan 25, 2008, at 4:16 PM, Rick Faircloth wrote:
Hi, Karl...
Got an ex
>
> image and have it say 'read article >' and a user could click it. then
> when the image fades, the link does also, until the next image fades
> in, with it's own text link to its own article. i'm not having much
> luck since i need to write each link it's own class in the stylesheet
> because t
No problem, Michael. I was just trying to take shortcut on a page I'm
developing.
As Mike stated, what I did was invalid HTML anyway, so it's not to be done.
As soon as I changed it to a normal text link, it worked perfectly!
Rick
> -Original Message-
> From: jquery-en@googlegroups.co
the procedure I mentioned above works fine in FF, but does not in IE.
The submit event is not passed at all.
I've tried to implement Klaus' suggestion, but so far have not had
success.
$(this).find(".thumb").animate({ "height": "50px" }, "fast");
Another way is to use the context argument of jQuery:
$(".thumb", this);
I believe this will actually be more performant because it only uses one
call to jQuery rather than two.
-- Josh
Thanks Karl,
Perfect. Worked like charm.
Christopher
On Jan 25, 2:03 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> I can't build the whole thing for you because I don't know what is
> being clicked and which element's class you want changed, but in
> general you can manipulate classes wit
I would like to have a navigation in my DIV's that allows me to jump
around to other DIV's placed around the screen. Right now here is what
I have using ScrollTo:
http://www.keithmuth.net/jquery/
I would like to keep the DIV's centered in the screens at all times,
whether you jump to it through t
never mind. I had a type in my modified .js.
thanks.
On Jan 25, 1:52 pm, Liming <[EMAIL PROTECTED]> wrote:
> Hey guys,
>
> I'm not sure what I did wrong. I'm using the thickbox IFrame method,
> but it's not doing anything in IE but works in firefox.
>
> here is my link
>
> class="thickbox">My P
yeah thanks to mike for a friggin awesome plugin!
i'm glad you liked checking out the labradoodles! this site is for a
friend of mine. they sold tiger woods his labradoodle! awesome huh?
they're beautiful dogs. anyway, i'm having one more little issue.
everything works GREAT, but i want to add so
Hi Matt and Tobaco, thanks for the quick replies -- I really
appreciate the help! :)
Both of your replies have been very helpful. Thanks!
Have a great day!
Cheers,
Micky
On Jan 24, 7:54 pm, Micky Hulse <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Two quick questions:
>
> -
>
> 01.
>
> $(".item").ho
Hi,
I'm trying to create a dynamic rollover effect for a client, but I
just can't get my code to work, don't really know why.
Here it is:
1 $("a.menu-text").hover (
2 function() {
3 var titleStr =
$(this).children("img.text").at
On Thu, Jan 24, 2008 at 08:30:59PM -0800, robing wrote:
> i have been asked to build a template that has a block that
> contains a header image and nav that needs to stay visible at the top
> of the screen even when the user scrolls down the page.
> i know this can be done in frames but i would l
Hi, Karl...
Got an example of the "experimental mouse tracking option" online?
Rick
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl
> Swedberg
> Sent: Friday, January 25, 2008 3:09 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery
Hmm...that's kind of strange. I'm in class right now but I'll look
into it this weekend as soon as I get a minute!
Michael
On Jan 25, 2008 1:51 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
>
>
>
> Well… you were spot on, Mike.
>
>
>
> That was enough to stop the plug-in dead in its tracks.
>
I am using an accordion with a list of main categories, each with a
list of sub categories (so just 2 levels of hierarchy). When you click
a sub category, a nearby div element is populated with a list of
products via Ajax. The normal behavior for the accordion when you
click the sub category is to
I have been searching for tutorials or examples that allow a website
to pull information from an Access database using jQuery or Ajax. So
far my search has been unsuccessful and there is probably a good
reason for that.
I'd first like to know if this is even doable and if so are there any
example
On Fri, Jan 25, 2008 at 05:39:29AM -0800, Klaus Hartl wrote:
> On Jan 25, 1:22 pm, carvingcode <[EMAIL PROTECTED]> wrote:
> > My tabs (using UI.TABS) stopped working in IE6 yesterday. There was
> > some formatting problems, but the tabs worked until yesterday.
> >
> > I'm using the stock "flora"
never mind. I had a typo in my modified .js.
Thanks.
On Jan 25, 1:52 pm, Liming <[EMAIL PROTECTED]> wrote:
> Hey guys,
>
> I'm not sure what I did wrong. I'm using the thickbox IFrame method,
> but it's not doing anything in IE but works in firefox.
>
> here is my link
>
> class="thickbox">My P
Joe,
You should put in a issue regarding this at
http://code.blogger.com/2007/10/reporting-and-tracking-blogger-api-bugs.html
On Jan 6, 1:33 am, Joe Maller <[EMAIL PROTECTED]> wrote:
> This is a bit of an odd request, but maybe there's something simple
> I'm overlooking.
>
> I have a function w
Thanks, Klaus! I know exactly when I added that. Surprised Aptana
didn't notice it...
On another note, any suggestions on where I could best start to get
the tabs located better within IE? I'm currently using the unmodified
tabs.css from the flora theme.
-- Randy
On Jan 24, 2008 10:30 PM, robing <[EMAIL PROTECTED]> wrote:
> i have been asked to build a template that has a block that
> contains a header image and nav that needs to stay visible at the top
> of the screen even when the user scrolls down the page.
> i know this can be done in frames but i wou
Well… you were spot on, Mike.
That was enough to stop the plug-in dead in its tracks.
I thought about that but didn’t try it first… :o/
Thanks, Mike!
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike
Alsup
Sent: Friday, January 25, 2008 2:35 PM
T
Is there any validation script that does allow it?
Eridius wrote:
>
> I am trying to find a way to use validation aide for this form but having
> issues. Basically this form is not going to post to another page, I need
> it to do a .load to another page and then replace the form with the retu
Hi everyone,
Wanted to let you know that I released a new version (0.9.5) of the
clueTip plugin at http://plugins.jquery.com/project/cluetip/
Here is a list of the changes since the last release:
* added clickThrough option to allow click to go to page, even if href
and tipAttribute are e
Awesome work Michael.
I love the title font, excellent choice. Glad to see it's library
independent.
~Sean
On Jan 25, 2008 3:45 AM, mjijackson <[EMAIL PROTECTED]> wrote:
>
> Hello all,
>
> I'm putting the finishing touches on a media viewer application that I
> coded up recently (think Thickbox
and when dealing with multiple classes on the same element, I've found it
necessary at times to use:
.attr('class' , 'class-name1 class-name2')
where .class-name1 typically doesn't change, but .class-name2 might be any
one of 5 or 6 different classes. Rather than trying to figure out which one
the history remote plugin might be what you need.
On Jan 25, 5:42 am, Jamie <[EMAIL PROTECTED]> wrote:
> Hey,
>
> After starting to use jQuery, I've found the back button on my browser
> no longer remembers the values in my forms. The user has to re-enter
> everything if they accidentally move p
heh. That reaction made it all worthwhile. :-) (and special thanks to
Mike Alsup for the awesome plugin!)
As a former owner of a standard poodle, I must say I loved looking at
the labradoodles on your web page, too.
--Karl
_
Karl Swedberg
www.englishrules.com
www.learning
>
>
> The only part that strays from the demo is what I've wrapped the
> tag around... a div I already had on the page with an image
> placed in its background via CSS. But I really don't see why that
> would matter
Well, it makes the markup invalid for starters.
Get working on it Klaus! :D
Klaus Hartl wrote:
On Jan 25, 10:45 am, mjijackson <[EMAIL PROTECTED]> wrote:
Hello all,
I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter
I can't build the whole thing for you because I don't know what is
being clicked and which element's class you want changed, but in
general you can manipulate classes with .addClass('some-class')
and .removeClass('optional-class-name') and .toggleClass('some-class').
You'll find these met
Hi, all.
I just had to try out the new Shadowbox plug-in that
Michael just introduced.
I tried on a site I'm working on, but can't get any response
and can't see what I'm doing wrong. Firebug returns no errors.
The only part that strays from the demo is what I've wrapped the
tag around... a d
Hey guys,
I'm not sure what I did wrong. I'm using the thickbox IFrame method,
but it's not doing anything in IE but works in firefox.
here is my link
My Profile
anything i'm missing?
Great info Chris, thanks for sharing.
On 1/25/08, Chris Scott <[EMAIL PROTECTED]> wrote:
>
>
> If anyone wants to use jQuery to get the presence information from AIM
> for a user, I documented it here:
> http://www.iamzed.com/2008/01/25/using-jquery-and-jsonp-to-get-aim-status/
>
> Nothing revolut
I have jquery.js loaded (visible in firebug)
I have editor.js loaded (visible in firebug) after jquery.js
Here is the code:
function (){
this.content = this.getContent();
$.post("updateStandardsCell",
{key: formatPOST(this.sid), content:
formatP
well using "this" saves a call the selector function, and chaining
commands let u continue to use the same object. you could also do this
$("#logo").click(function() {
var $this = $(this); //a normal variable holding a jquery
object, give it the dollar sign to indicate that
$this.fade
If anyone wants to use jQuery to get the presence information from AIM
for a user, I documented it here:
http://www.iamzed.com/2008/01/25/using-jquery-and-jsonp-to-get-aim-status/
Nothing revolutionary, but the JSONP callback stuff threw me for a
while.
--
Chris Scott
Adaptive Hosting Sol
KARL!! thank you so much! that worked perfectly man! thank you!! i'm
thining about adding the paging slideshow instead of this one in the
future. i'll be back if i have any problems! you guys are the best!!!
woohoo we're cookin now!!!
=)
On Jan 25, 7:23 am, Karl Swedberg <[EMAIL PROTECTED]> wrot
On Jan 25, 10:45 am, mjijackson <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I'm putting the finishing touches on a media viewer application that I
> coded up recently (think Thickbox). It can be used with jQuery or any
> other library. I created an adapter for jQuery, and I thought that
> somebody
Thanks a ton, your solution is working great. The final code I'm
using is below.
$(document).ready(function(){
//an add button at the bottom of my tblFormulary table ads a new row,
incrementing the input fields name and ids
$("input:[EMAIL PROTECTED]'Add_Row']").click(function () {
var myRecor
Well, unfortunatly we only have it up on an interanl site for testing
right now, but I'll move some stuff around, and let you know when its
up.
Thanks again
BFTech
hi.
On Dec 19 2007, 3:02 pm, Josh V <[EMAIL PROTECTED]> wrote:
> help.
>
> On Nov 30, 4:55 pm, Josh V <[EMAIL PROTECTED]> wrote:
>
> > anybody?
>
> > On Nov 29, 5:03 pm, Josh V <[EMAIL PROTECTED]> wrote:
>
> > > hi. i have a site where i need two different carousels on the same
> > > page. each c
I am looking for a solution where I can have images scroll and
JCarousel pretty much hits the nail on the head but I'm struggling
with a couple of things.
I want it to constantly scroll images but there is always a pause
after a scroll. I am wondering if that pause can be removed so it's
just a c
On Jan 25, 4:24 am, Dave Stewart <[EMAIL PROTECTED]>
wrote:
> Hi MorningZ,
> I just did some quick Googling on the matter, and turned up this
> useful link:
>
> http://www.456bereastreet.com/archive/200711/use_the_label_element_to...
I just had to laugh at this line in that link:
"I always use
It was that simple, thank you!
Wow! This is great! Good jo!
Matt Penner
Database Engineer II
GIS Support
[EMAIL PROTECTED]
(951) 940-6108 x10709
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of mjijackson
Sent: Friday, January 25, 2008 1:45 AM
To: jQuery (English)
Subject: [
Rick,
That is an excellent idea! Hadn't thought of that one. You've got the
wheels inside my head turning now... ;)
Michael
On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote:
>
> I may use this on the real estate sites that I'm working on, because
> I wanted a viewer that would allow large i
I know this may be a pretty elementary question, but I am trying to
figure out how to change a class based on a click. I think should be
able to do this with replaceWith, but for some reason I am struggling.
I have this:
1.Boat Select
2.Halyard Length
3.Shackle Select
and for example would lik
On Jan 25, 6:01 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]>
wrote:
> arf my bad, good catch karl :) , indeed i meant the packed version ! And
> then i guess whatever's gzipped still needs to be uncompressed by the
> browser which means it has a sensible influence on the performance of low
> s
Ok, I made it a whole lot simpler, hopefully someone can point me to the
mistake I am making:
http://support.ownwebnow.com/test.php
This form uses jQuery form plugin to put the result of the submission (to
test1.php) into companyForm div. Works great.
test1.php returns a form, which also uses jQu
Thanks Rey! Wow...I hope my new little blog can handle all the
traffic. ;)
Michael
On Jan 25, 2008, at 9:50 AM, Rey Bango wrote:
>
> Great work Michael:
>
> http://ajaxian.com/archives/library-agnostic-lightbox
>
> Rey
>
> mjijackson wrote:
>> Hello all,
>> I'm putting the finishing touches o
I am trying to overlay the display of two ajax data calls in order
that a user can compare the results. I had it working as a straight up
css and php call, but trying to user jquery and an ajax return of
data, I can not get the one set of divs to overlay transparently with
the other.
To see what I
Great stuff!
In the meantime I'm looking forward to learning even more about your
fabulous, time-saving plugin.
Cheers!
Dave
On Jan 25, 7:45 am, tlob <[EMAIL PROTECTED]> wrote:
> I successfully implemented a simple drop down selection.
> Question:
>
> 1) If I change
> $("#tl,#ch,#sg,#mt").hide();
> to
> $("#tl,#ch,#sg,#mt").fadeOut();
> I end up with a nasty blinker effect, because the new image fades out
> while the ne
anyone any hint please?
at least a comment if this *should* work?
Jörn Zaefferer schrieb:
Dave Stewart schrieb:
Jörn,
"highlight" does exactly what I want if I pass it an empty function,
so that's great.
How about adding the option to pass "null" or "false" for those times
when you want to do nothing and just let the the error message take
the strain?
Ma
Perhaps the jQuery elementReady plugin will help? I don't have
experience with it in Safari, however.
http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/
Charles
On Jan 24, 5:48 pm, Thame <[EMAIL PROTECTED]> wrote:
> This is my first post to the list, so please excuse any
mjijackson schrieb:
Hello all,
I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQuery, and I thought that
somebody on this list might be interested.
http://mjija
Great work Michael:
http://ajaxian.com/archives/library-agnostic-lightbox
Rey
mjijackson wrote:
Hello all,
I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for jQue
Dave Stewart schrieb:
Jörn,
"highlight" does exactly what I want if I pass it an empty function,
so that's great.
How about adding the option to pass "null" or "false" for those times
when you want to do nothing and just let the the error message take
the strain?
Makes sense. Gonna add that.
=O
killerrr!
On Jan 25, 2008 1:26 PM, Karl Swedberg <[EMAIL PROTECTED]> wrote:
>
> Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
> code yet, but the presentation is outstanding. Fantastic work!
>
>
> --Karl
> _
> Karl Swedberg
> www.englishrules.com
>
Is there any way to have a Masked Input have optional characters? For
example, if I have a month field, I would want to allow 01, 02, 03, etc, but
also 1, 2, 3, etc. If I define the mask as "99", then it blanks out the
field if the leading zero isn't added.
I even tried defining my own placeho
Absolutely great work Michael. And I love the fact that it's lib agnostic.
Rey,,...
mjijackson wrote:
Hello all,
I'm putting the finishing touches on a media viewer application that I
coded up recently (think Thickbox). It can be used with jQuery or any
other library. I created an adapter for
Dave Stewart schrieb:
But unless I'm mistaken, it's missing from the validation options
documentation!
No, you're not. Gonna fix that, good catch!
Jörn
Jacky schrieb:
Hi,
I valiate two fields that depend on each other if blank,for
example,user must supply he/her telephone number or mobile number,he/
her just need input the one of that(telephone number or mobile
number).
I set the rules like this:
rules:{
telephone:{
required:"#mo
On Jan 25, 2008, at 9:35 AM, MorningZ wrote:
$("#ColumnEdit select")
Worked... thanks
"That said, I'm surprised "#ColumnEdit > tr > td > select" did not
return any matches"
As was I and the select boxes have options defined, i was just
shorthanding the code for brevity's sake in
Michael, this is really nice! You've packed a ton of features in there.
And the docs are outstanding.
Cheers!
Mike
On Jan 25, 2008 4:45 AM, mjijackson <[EMAIL PROTECTED]> wrote:
>
> Hello all,
>
> I'm putting the finishing touches on a media viewer application that I
> coded up recently (thin
I am trying to find a way to use validation aide for this form but having
issues. Basically this form is not going to post to another page, I need it
to do a .load to another page and then replace the form with the return text
but it seems like it validationaide passes, it automatically send the
I may use this on the real estate sites that I'm working on, because
I wanted a viewer that would allow large images to be displayed using
maximum space allowed by the viewport of the browser. Your plug-in seems
to accommodate that requirement.
One thing I didn't notice that I would really love
I have now uploaded the new version of the ajaxContent jquery plugin.
The release gives to the plugin many new options and funcionality.
A new beforeSend callback is now available and fires just before the
ajax call is performed
The plugin now can extend the ajax event to items injected in the DOM
I successfully implemented a simple drop down selection.
Question:
1) If I change
$("#tl,#ch,#sg,#mt").hide();
to
$("#tl,#ch,#sg,#mt").fadeOut();
I end up with a nasty blinker effect, because the new image fades out
while the new one fades in. How can I can this?
2) Is it clean to let the
choose
1) How can I prevent this?
On Jan 25, 4:45 pm, tlob <[EMAIL PROTECTED]> wrote:
> I successfully implemented a simple drop down selection.
> Question:
>
> 1) If I change
> $("#tl,#ch,#sg,#mt").hide();
> to
> $("#tl,#ch,#sg,#mt").fadeOut();
> I end up with a nasty blinker effect, because the new im
Michael, this is indeed GORGEOUS is the word. Fantastic, i bet in one month
we'll see this one everywhere.
-- Original Message --
To: Jquery-en (jquery-en@googlegroups.com)
From: Karl Swedberg ([EMAIL PROTECTED])
Subject: [jQuery] Re: Shadowbox Media Viewer
Date: 25/1/2008 16:2
Hello again,
gosh this should be so easy yet i can't make it work. Here is what i'm trying
to do: i have a data structure stored as an xml file.
I need to load this structure once at the start of the application.
I need a function to search through this data structure and return the
correspo
Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the
code yet, but the presentation is outstanding. Fantastic work!
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jan 25, 2008, at 4:45 AM, mjijackson wrote:
Hello all,
I'm putting th
i wonder if you shouldn't make sure you reinitiate the variable, so use var
before:
$('a.deletepm').click(function(){
var id = $(this).attr('id');
...
On Jan 25, 2008 1:56 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have the following problem. I have a page with several l
$("#ColumnEdit select")
Worked... thanks
"That said, I'm surprised "#ColumnEdit > tr > td > select" did not
return any matches"
As was I and the select boxes have options defined, i was just
shorthanding the code for brevity's sake in my original post
On Jan 25, 3:03 am, George <[E
How can I use JqGrid with special char?
ex.: Pão, Melão, José
Could someone help me ?
by Marcio Carvalho
Hey,
After starting to use jQuery, I've found the back button on my browser
no longer remembers the values in my forms. The user has to re-enter
everything if they accidentally move past a page and wish to go back.
Is there any way I can get the page to keep it's state?
Thanks!
Jamie Goodfellow
Hey,
Has anyone ever tried any reverse ajax solution using jQuery? I have
a slow-loading ajax call and would like the server to send back status
updates through the open HTML connection. Does anyone know how I
could gain access to the server response data as in comes in, rather
than at the comp
1 - 100 of 127 matches
Mail list logo