Think I'm out of luck here, but I'm looking for a grid system that has
bells and whistles similar to flexigrid
(http://webplicity.net/flexigrid/), but with the ability to edit the cell
contents. Some cells would be simple text, while others would need to be
look up lists ( tags are fine)...
Yeah the iframe is the way to go, that's the way the plugin does it.
Karl Rudd
On Tue, May 13, 2008 at 2:23 PM, hubbs <[EMAIL PROTECTED]> wrote:
>
> I see.
>
> Is there a way that I can still use ajax post, but submit that to an
> iframe? Or is the only way to do it is by using a normal form
Think I'm out of luck here, but I'm looking for a grid system that has
bells and whistles similar to flexigrid
(http://webplicity.net/flexigrid/), but with the ability to edit the
cell contents. Some cells would be simple text, while others would need
to be look up lists ( tags are fine)...
I see.
Is there a way that I can still use ajax post, but submit that to an
iframe? Or is the only way to do it is by using a normal form?
On May 12, 8:44 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> You can't actually do file upload via AJAX, it's a security "feature",
> it can be "faked" thou
how i could do it`s commands?
On 12 maio, 22:35, darren <[EMAIL PROTECTED]> wrote:
> you could even use commas in your selector so that you aren't
> repeating your statements.
>
> On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote:
>
> > hdfsuahd it`s ok ok..
> > i forgot space.."#box2. bloc-t
OK, thanks. The FAQ and doc page made me think I was using an approach
that wasn't officially supported. I'll stick with the approach of
using true and false -- that results in cleaner code in my experience
so far.
Allen
On May 12, 4:49 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> As fair as I'm
It's also referenced here in the source code of the demo
http://docs.jquery.com/Plugins/Validation
On May 12, 3:12 pm, JP <[EMAIL PROTECTED]> wrote:
> on the bottom of this page
>
> http://jquery.bassistance.de/validate/demo/
>
> I did get jsVal working, it needs to be used with validating by
>
Hi,
I just created a webpage that requires a username and password to be
submitted in order for the user to proceed to another section of the
site.
My questions is how can the landing page (the page the user is
redirected to after submitting the correct information) verify that
the user has logg
You can't actually do file upload via AJAX, it's a security "feature",
it can be "faked" though.
Try this plugin:
http://plugins.jquery.com/project/form
Karl Rudd
On Tue, May 13, 2008 at 1:38 PM, hubbs <[EMAIL PROTECTED]> wrote:
>
> I have set up a form that uses the $.ajax function using PO
I have set up a form that uses the $.ajax function using POST. Part
of my form is an image upload dialog, using the standard file upload
input box. The problem is, the upload is not working, and I think it
has to do with the encoding. When I upload it with ajax, it just
sends through the path t
As fair as I'm aware, in JavaScript, the boolean values are the
correct values for getting and setting the boolean attributes, like
"disabled" and "readonly". When the HTML is parsed those accessing
those attributes will return either 'true', 'false' or 'undefined'.
The attr("disabled","disabled"
$("#mytextbo")[0].select();
jQuery(selectorString), or the "shortcut" $(selectorString), always
return an array like object. To "run" the select() on it you have to
access one of the "raw" elements it contains, hence the [0], which
retrieves the first element in the "array".
Karl Rudd
On Tue, M
I've been searching and i'm not quite sure how to do it. Anyone else
know how? Thanks
you could even use commas in your selector so that you aren't
repeating your statements.
On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote:
> hdfsuahd it`s ok ok..
> i forgot space.."#box2. bloc-top"
>
> On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote:
>
> > how i can access classes in m
Here it is:
http://book.learningjquery.com/scripts/jquery.1.1.3.js
After going through the book and checking out the code examples, it
would be a good idea to upgrade to the latest jQuery (1.2.3, soon to
be 1.2.4). Quite a bit has changed -- for the better. See links to
version release no
hdfsuahd it`s ok ok..
i forgot space.."#box2. bloc-top"
On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote:
> how i can access classes in my div?
> example:
>
> $("#box1.bloc-top").click(function () {
> $(".bloc-center").slideToggle("slow");
>
> });
>
> $("#box2.bloc-top").click(funct
Karl,
I downloaded the code from http://book.learningjquery.com/2509_06_code/
but still nothing displayed when I clicked button D.
I noticed that the code was referenced to . I googled "query.
1.1.3.js" but couldn't find any result. I downloaded query-1.1.3.js
(noted the dash, query-1 not quer
how i can access classes in my div?
example:
$("#box1.bloc-top").click(function () {
$(".bloc-center").slideToggle("slow");
});
$("#box2.bloc-top").click(function () {
$(".bloc-center").slideToggle("slow");
});
$("#box3.bloc-top").click(function () {
$(".bloc-cente
Is this FAQ correct:
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_disable.2Fenable_an_element.3F
The example code given for the FAQ is:
// Disable #x
$("#x").attr("disabled","disabled");
// Enable #x
$("#x").removeAttr("disabled");
but I tried this:
// Disable #x
$("#x").at
Lee,
Do the various plugins at least use the same jQuery version? If so, can
you modify the plugin-specific JS file to load the required jQuery
scripts only if they haven't already been loaded? You will at least
need to make sure that the jQuery.js (or jQuery.min.js or
jQuery.pack.js) is lo
That's BAD html!! don't insist! :)
Just kidding.. you should switch over to classes or you'll eventually
face quirk after quirk.
--
Ariel Flesler
http://flesler.blogspot.com
On 12 mayo, 17:52, Hamish Campbell <[EMAIL PROTECTED]> wrote:
> Even though you can't use the id selector directly, you c
I am using the flexigrid plugin from http://webplicity.net/flexigrid/.
I have my codebehind generating a json result in the format expected
until I call the url as a struts action in my portlet... This wraps
the output with an unexpected tag which makes the grid not
render. I've used fiddler to g
on the bottom of this page
http://jquery.bassistance.de/validate/demo/
I did get jsVal working, it needs to be used with validating by
complete form instead of individual fields
On May 12, 12:16 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> That is now bundled. Where did you find the note
Hi All!
I have found out why the lightbox doesnt work on the live site.
The site is hosted on Micro$oft Office Small Business site and it
reads each file thats uploaded and strips any "potentially malicious"
JS code. It must ready the jquery file and lightbox file and think
it's malicious for so
ShareThis uses jQuery
http://sharethis.com/
Rey...
Tools --> Internet Options --> Advanced --> Security --> Allow active
content to run in files on My Computer.
The reason why this is turned off, is if you download malicious content and
it executes, it could compromise your PC.
Your other option is to use Firefox.
JK
-Original Message-
Finally pushed v1.3 of my No Spam jQuery plugin out the door over the
weekend. For those unfamiliar, it takes an obfuscated e-mail address
and turns it into a human-readable one. It's meant to be light and
easy to use, and I've updated the PHP companion function for it so
they're compatible, makin
I'm currently working in a tiny demo.
No server, nothing, executed locally (from the hard drive).
The results is the classical msg:
"To help protect your security, Internet Explorer has restricted this
file from showing active content that could access your computer".
To allow the blocked conten
Is anyone aware of a working example of using jQuery to display a
random css background image from a set of images?
Even though you can't use the id selector directly, you can still use
the id as an attribute selector (works in IE7 anyway).
$(document).ready(function(){
$('div[id=wrapper]').each(
function(i){
$(this).attr('id', $(this).attr('id')+'_'+(i+1))
}
);
});
On May 13, 8:16
> $(this).attr('class') should be $(this).attr('className')
Not necessarily :)
--
Ariel Flesler
http://flesler.blogspot.com
On 12 mayo, 08:58, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> One minor correction to the sample code below. $(this).attr('class') should
> be $(this).attr('classNam
No Richard, that's a bug on jQuery.attr, undefined is returned instead
of ''.
'class' works as well as 'className'.
I hope this gets revised, it's one of the fixes of on this ticket:
http://dev.jquery.com/ticket/2548
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
On 12 mayo, 09:01, "Ric
No, currently there is no support for multiple messages via metadata.
You could change the default messages to fit, but that won't give you
custom messages for each field, unless you add custom methods.
Jörn
On Mon, May 12, 2008 at 4:59 PM, Dane <[EMAIL PROTECTED]> wrote:
>
> Hi,
> This may be
Hi,
Not sure if my last post ended up having "validate" in the subject. So
appologies for this repost.
This may be because I'm not totally fluent with the Validation plugin
yet but I'm having a problem figuring out how to specify messages for
each rule via metadata. It appears that an input elem
You could use the success-option, passing a callback, as a hook to
trigger validator.focusInvalid(). Something like this:
var validator = $("...").validate({
// other options
...,
success: function() {
validator.focusInvalid();
}
});
Jörn
On Mon, May 12, 2008 at 5:23 PM, Alexsandro_
Translations are always welcome, please mail them directly to me,
preferably UTF-8 encoded.
About the allowDuplicateNames modification: Could you create a ticket
for that? http://dev.jquery.com/newticket
Thanks
Jörn
On Mon, May 12, 2008 at 3:22 PM, a_claudiu <[EMAIL PROTECTED]> wrote:
>
> Hi,
I've been having similar issues, and your solution really helped, but
i think it introduced another problem.
if I retrieve the same form again, so loaded the form a second time
via ajax, the form tries to validate, but then submits anyway. Kinda
strange.
My code looks like this
[ code]
function
That is now bundled. Where did you find the note? I thought I removed them..
Jörn
On Mon, May 12, 2008 at 5:40 PM, JP <[EMAIL PROTECTED]> wrote:
>
> your website says "jquery.delegate.js - special event delegation,
> required" but I don't see that in the download...
>
>
>
> On May 12, 4:40 am
There is a event triggered for invalid forms, see
http://docs.jquery.com/Plugins/Validation/validate#options
A usage example is here:
http://jquery.bassistance.de/validate/demo/marketo/mktSignup.js
$("form").bind("invalid-form.validate", function(e, validator) {
var error
I tried to get around that by
$(data).ready(function(){
});
but still could not access the xml data.
On May 12, 10:58 am, JQuery <[EMAIL PROTECTED]> wrote:
> I could see the content of the d.xml file (alert('data: ' + data), but
> I could not see the alert('inside each function'). I
Seems like the file on the live-site is broken:
http://treetment.co.uk/js/jquery.lightbox.js
2008/5/12 [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
>
> Hi All,
>
> I've recently uploaded a website http://www.treetment.co.uk and I have
> used the jQuery Lightbox plugin to scroll through the portfolio
>
Hi,
There was a problem with the particular version of jQuery that was
bundled with the downloadable code from the Packt website.
Take a look at the companion site for a working version:
http://book.learningjquery.com/2509_06_code/dictionary.html
--Karl
_
Karl Swedberg
www
I could see the content of the d.xml file (alert('data: ' + data), but
I could not see the alert('inside each function'). I think jquery did
not recognize d.xml is an xml file.
Any idea?
Thanks
$(document).ready(function() {
$('#letter-d .button').click(function() {
$.get('d.xml', functio
Hi,
I just wanted to let you know that I also am experiencing this. I've
yet to find a solution for the problem, but I'm in the process of
finding out. If anyone else has a good solution, or know if it is
fixed in the upcoming release, please let us know.
On 11 Apr, 22:45, nerohc <[EMAIL PROTECTE
Hi All,
I've recently uploaded a website http://www.treetment.co.uk and I have
used the jQuery Lightbox plugin to scroll through the portfolio
pictures.
I have tested the site locally and uploaded to
http://www.ajtrichards.co.uk/clients/treetment/
and they both work fine.
However, when you try
Thanks Mike, I appreciate your help
On May 10, 8:55 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote:
> It's fairly common for a syntax error message to give you the correct
> location of the error but not tell you what the actual error really is. In
> this case, it's missing {}.
>
> ...
> $
Firstly, you were placing a click handler on the LI, not on the INPUT
(the checkbox), so inside the click handler 'this' refers to the
relevant LI whose checkbox has been clicked.
That's fine for retrieving the text, but the LI doesn't know whether
the checkbox is checked or not (as a result of be
Hello,
I am trying to create a dynamic daily calendar (see image
http://img107.imageshack.us/img107/8425/picture7gv1.png) that when the
user hits "next" or "last" the calendar will slide out/in to the next
week of days. I have looked at this ajax load plugin (http://
www.andreacfm.com/index.cfm/j
This is the thing i need to be able to do trying to use the Validation 1.2
plug. Basically i want to be able to undisabled a button if the validation
fails. Now i just disable the button on click which works fine but i don't
see anything in the documentation on being able to trigger a function
Wow!! that worked!!! thanks
Next question. . .Why? I am not seeing the flaw in the logic of my broken
and obviously less elegant solution.
And how did you get away with not having to use event.preventDefault() ???
Also i don't understand why "var item = $(this).parent().text();" returns
wha
Hi,
I´m using the superfish vertical menu with an ajax (scriptaculous
+prototype) application and the superfish was working just fine,
before add this application.
Now, when i do a mouseover the 2st level menu, just appears and
disappears !??
here´s the link:
http://marteleira.com
[code]
your website says "jquery.delegate.js - special event delegation,
required" but I don't see that in the download...
On May 12, 4:40 am, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> You many want to try a jQuery based validation
> instead:http://bassistance.de/jquery-plugins/jquery-plugin-vali
Hi Dave,
that's an odd one.
I just copied/pasted your html and tested it with no issues. Could
there be something in your httpd.conf or .htaccess file that is
interfering with it? Just a guess. Wish I could be of more help, but
maybe that will point you in a productive direction.
--Karl
Hi Jörn Zaefferer,
I try to use your plugin in this way, take a look:
http://blog.alexsandro.com.br/aa.htm
And I try any way to validate inputs on cascate.
Eg.:
open this url http://blog.alexsandro.com.br/aa.htm click in submit.
Look!, the ballon start on first input, but if you enter a valid
Hi all,
I am afraid that this is going to be a very simple problem, but I am
completely stuck. I read the start of the tutorial [1], made the
hello world page[2], and the Hello World popup does not come up. I
replaced the Link with onclick="alert('Hello world')" and that
worked. After reading
Hi,
This may be because I'm not totally fluent with the Validation plugin
yet but I'm having a problem figuring out how to specify messages for
each rule via metaData. It appears that an input element with 3 rules
when broken will need to summarized the reason for the break in a
generic message sp
fixed it, just had to add return false; to the click function.
On May 12, 3:19 pm, thekman <[EMAIL PROTECTED]> wrote:
> Hi & thanks again for your help Dave.
> Do you know of a better way to do this bit?
>
> div>Reviews
>
> i am using the href as i want to use a hover image, but if it is far
> d
Karl Swedberg released clueTip plugin 0.9.7. Fixed a few bugs.
http://plugins.jquery.com/project/cluetip
Rey
Thanks andrea ;)
On May 12, 12:27 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
> Sussed it:
>
> $('this').val() does the trick!
>
> On May 12, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
>
> > Heres my code:
>
> > This fires on any dropdown with the class 'ajaxdropdown': However, it
> > errors t
I was confronted with a similar problem a few weeks ago and solved it
by borrowing
some code from the YUI library. So I composed this little plugin:
(function($) {
$.fn.extend({
isAncestor: function(descEl) {
var ancEl = this[0];
if (ancEl.contains) {
On the script includes, try changing the script type from "application/
javascript" to "text/javascript" and see if that helps.
Hi & thanks again for your help Dave.
Do you know of a better way to do this bit?
Reviews
i am using the href as i want to use a hover image, but if it is far
down the page & a user clicks on it to show/hide the content, the
browser scrolls back to the top of the page.
any ideas?
On May 12, 1:
G'day Folks
Firstly an admission that I'm a newbiw with jQuery (so please be
gentle).
On the site I'm working on I've so far used jQuery in two instances,
one site wide & the other on only one page. The code on the page where
both appear is...
$(document).ready(fu
Hi,
I'm using your plugin and I like it a lot but I needed to extend it a
little bit. I wanted to display error messages for multiple input text
having the same name but different id's. Because in the plugin is
checking only the first text box matching the name I added the next
lines:
allowDuplic
I've had a ton of problems using Applets on a page with jQuery in FF2
because FF does not like jQuery accessing the expando elements when the
window.onunload event runs.
I've had to revert to using an iframe to load my applets in, so that it can
be embedded in a page without jQuery. Perhaps you c
> On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > > I am facing a very weird problem in IE 6.0 as the $.unblockUI()
> > > function is NOT removing the created page block. I have searched for
> > > solution but have not find any good solution.
> >
> > > Can anyone help me in t
How about a jQuery tie for those of us who need to dress up when we go to
work. ;-)
--
View this message in context:
http://www.nabble.com/jQuery-TShirt-tp17129265s27240p17187162.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.
On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > I am facing a very weird problem in IE 6.0 as the $.unblockUI()
> > function is NOT removing the created page block. I have searched for
> > solution but have not find any good solution.
>
> > Can anyone help me in this and suggest me
On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > I am facing a very weird problem in IE 6.0 as the $.unblockUI()
> > function is NOT removing the created page block. I have searched for
> > solution but have not find any good solution.
>
> > Can anyone help me in this and suggest me
Sorry folks - I was looking in the wrong place - the file being
loaded had a malformed div tag and IE7 was responding to that.
Cheers,
Bruce
At 11:45 p.m. 12/05/2008, you wrote:
On 12 Mag, 12:57, Bruce MacKay <[EMAIL PROTECTED]> wrote:
> Hello folks,
uhm... it's kinda strange O_o
maybe t
2008/5/12 Jörn Zaefferer <[EMAIL PROTECTED]>:
>
> This line is broken: "minLegth:3,". The method is "minlength" and
> you've got a trailing comma which screws up any non-firefox browser.
> Same in your last line of ajaxSubmit "dataType: 'null',".
>
> Jörn
Oh my God! I'm a luser... :(
What is
The name of the class attribute is className, so you want:
$('#myid').attr('className');
- Richard
Richard D. Worth
http://rdworth.org/
On Sun, May 11, 2008 at 12:48 PM, Adwin Wijaya <[EMAIL PROTECTED]>
wrote:
>
> I have code .. to check what class in every id ..
>
> i found that if the class=
One minor correction to the sample code below. $(this).attr('class') should
be $(this).attr('className')
- Richard
On Mon, May 12, 2008 at 7:22 AM, andrea varnier <[EMAIL PROTECTED]>
wrote:
>
> On 12 Mag, 12:31, quirksmode <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I am dynamically generating ht
On 12 Mag, 12:57, Bruce MacKay <[EMAIL PROTECTED]> wrote:
> Hello folks,
uhm... it's kinda strange O_o
maybe this line:
> $("#justlist,#tech").hide();
is hiding something it should not?
just guessing ^^
On Sun, May 11, 2008 at 3:59 PM, snoodle <[EMAIL PROTECTED]> wrote:
>
> It's taken me a little while, but I believe I have finally succumbed
> to the power and wonder that is... JQuery. I have been bouncing from
> framework to framework for about 9 months, much of that time devoted
> to building
You many want to try a jQuery based validation instead:
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
Just released version 1.3. Let me know if you need help with it.
Jörn
On Mon, May 12, 2008 at 8:10 AM, JP <[EMAIL PROTECTED]> wrote:
>
> In an $.ajax option beforsend, I want
This line is broken: "minLegth:3,". The method is "minlength" and
you've got a trailing comma which screws up any non-firefox browser.
Same in your last line of ajaxSubmit "dataType: 'null',".
Jörn
On Mon, May 12, 2008 at 11:20 AM, András Csányi <[EMAIL PROTECTED]> wrote:
> 2008/5/11 Jörn Zaeffe
A new release of the validation plugin
(http://bassistance.de/jquery-plugins/jquery-plugin-validation/) is
done, now at version 1.3. This release adds five more localizations
and fixes a few bugs, eg. "asdf" is not a valid creditcard number
anymore.
Major improvements went into validating a form
Sussed it:
$('this').val() does the trick!
On May 12, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote:
> Heres my code:
>
> This fires on any dropdown with the class 'ajaxdropdown': However, it
> errors telling me that event.val() is not a function. How do I refer
> to the current dropdown being
On 12 Mag, 13:05, Pickledegg <[EMAIL PROTECTED]> wrote:
> How do I refer
> to the current dropdown being changed, and get its value?
hi :)
you should use $(this).val()
On 12 Mag, 12:31, quirksmode <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am dynamically generating html which looks like this:
since you're generating the html dynamically, I'd suggest you do it
server side (i.e. a for loop).
if that is not possible, change with , if you need the "wrapper" string, or
Heres my code:
This fires on any dropdown with the class 'ajaxdropdown': However, it
errors telling me that event.val() is not a function. How do I refer
to the current dropdown being changed, and get its value? I know $
('#idofdropdown').val() will work, but I need to use multiple
dropdowns.
$(
> I am facing a very weird problem in IE 6.0 as the $.unblockUI()
> function is NOT removing the created page block. I have searched for
> solution but have not find any good solution.
>
> Can anyone help me in this and suggest me something .. any clue .. any
> hint? Why $.unblockUI() is not w
Hello jQuery(world)!
I'm pleased to inform you that version 2 beta of YCodaSlider has been
published.
Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo
Mingati: Niall Doherty's Coda-Slider is a heavily modified version of
his slideViewer.
http://maxb.net/blog/2008/05/11/ycodaslide
2008/5/11 Jörn Zaefferer <[EMAIL PROTECTED]>:
>
> What exactly are you trying to achieve? Currently the only thing I can
> provide is a pointer at the example you already found...
>
> Jörn
So,
i put here my code, and i hope you can tell me what i did wrong.
form:
Teszt form
a:
b:
c:
$('
Hi,
I am dynamically generating html which looks like this:
Some Content
Some Content
Some Content
I need to write some jquery which will turn that into this:
Some Content
Some Content
Some Content
Any ideas?
Dave
On the behalf of OP, It works. Thanks.
hi guys,
i have 2 frames in a page...
in one frame i have a button,onclicking it i want to load the
contents into another frame..
can someone help me with this
regards,
vimal
Hello jQuery(world)!
I'm pleased to inform you that version 2 beta of YCodaSlider has been
published.
Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo
Mingati: Niall Doherty’s Coda-Slider is a heavily modified version of
his slideViewer.
http://maxb.net/blog/2008/05/11/ycodaslid
very nice.
I could see myself going way overboard with something like this. Note
to self, less is more.
On May 11, 4:55 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> Growl for jquery
>
> http://projects.zoulcreations.com/jquery/growl/
>
> Rey
Hello jQuery(world)!
I'm pleased to inform you that version 2 beta of YCodaSlider has been
published.
Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo
Mingati: Niall Doherty's Coda-Slider is a heavily modified version of
his slideViewer.
http://maxb.net/blog/2008/05/11/ycodaslide
Thank you for your answer, Joerg.
What I forgot to mention is that I am using the ajaxForm plugin on
that form and and that I have two different forms on the same page.
Would this make a difference? Unfortunately the debug:true did not
change anything, though...
juro
On May 11, 5:26 pm, "Jörn Z
After way too many hours wasted, I find I have to ask for help. I am a
coldFusion programmer and a neophyte at jquery.
I am trying to show and post info for a drag & drop page. I need to
show the coordinates and strokeNo and post to a database the same plus
the div of where the draggable was drop
Hello ALL,
I am facing a very weird problem in IE 6.0 as the $.unblockUI()
function is NOT removing the created page block. I have searched for
solution but have not find any good solution.
Can anyone help me in this and suggest me something .. any clue .. any
hint? Why $.unblockUI() is not
In an $.ajax option beforsend, I want to call a function to validate
a form using jsVal script
(jsVal is here: http://jsval.fantastic-bits.de/ The home page shows
examples)
I tried the following:
...
$.ajax({
beforeSend: showRequest,
...
function showReques
hi guys,
i have 2 frames in a page...
in one frame i have a button,onclicking it i want to load the
contents into another frame..
can someone help me with this
regards,
vimal
In an $.ajax option beforsend, I want to call a function to validate
a form using jsVal script
(jsVal is here: http://jsval.fantastic-bits.de/ The home page shows
examples)
I tried the following:
...
$.ajax({
beforeSend: showRequest,
...
function showReques
Hello Paulo ,
Can you say why you use the row data formate [id:value, cell:
[col1,col2,col3]] instead of [{name:value},{name:value},{name:value}]?
Does anyone one have a way to get Felxigrid to with this format:
[{name:value},{name:value},{name:value}] ?
test
I already am using Firebug. I'm just learning JQ and was trying to
save some time. resizeable.js works fine when summoned from the demo
html, but for me, the same call to .resizeable() with the same nil
arguments results in the errors I mentioned
Again, the error is below (generated by Firefox)
1 - 100 of 104 matches
Mail list logo