Have you looked at Raphaèl?
--
Scott
Iphone says hello.
On Oct 14, 2009, at 5:47 AM, megladon wrote:
I am looking for a pie chart that I can update by jQuery. I have used
sparklines but I cant get it to update without a page refresh. Has
anyone used such a graph?
There are just too many accordions out there, can someone point me in
the right direction. This need not be fancy:
The first h3 of course should not be hidden. On clicking any of the
h3's, which I will href a link to '#' on, that one should go from
hidden to shown. Clicking on any ot
That would make sense, since `do` is a language keyword:
do {
code to be executed
}
while (var <= endvalue);
I am sure there is a way to escape it, though in the same way I am
fearful of using if/else/for/while/var and all the test as name/value
pairs in JS or jQ, I would look to ch
Correct, you can not have duplicate #id's so you will need to change
those to classes. However, I am not sure that is valuable to you,
since why would you want to have a click event change *everything* in
all your divs you listed from the server side output below?
I would change the serve
I believe you need to narrow it down some more, or you are going to
replace everything:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js
">
I believe what happens, is there is a bad address in the group, so
when you post a message to the list, it is sent out to all subscribers.
Final-Recipient: rfc822; r...@localhost
Original-Recipient: rfc822;r...@localhost
Action: failed
Status: 5.3.0
If an email is sent from the group to r...
Neither. Learn to figure out the right tool for the job. When it
comes to web development, you will mostly use jQuery on the client
side, and ASP or php on the server side.
If you just want to start to learn programming, start with jQuery, or
probably a little JavaScript first, since jQ
Could you use get.JSON?
http://docs.jquery.com/Ajax/jQuery.getJSON
You could of course also use post, but for quickies I use get:
$.getJSON("example.php", { name: "John", time: "2pm" }, function(json) {
alert("JSON Data: " + json.users[3].name);
});
In the above, example.com/?name=John&tim
This is a quick and dirty way to show you the basics of how you may
want to approach it. I wrote this off the top of my head, and will
leave positioning up to you, but the basic concepts should be there: http://dl.getdropbox.com/u/340087/Drops/09.25.09/lightbox-617a096a-225212.html
--
Scott
I went through all the plug-ins pages last night. There are a good
deal, 10% maybe, that 404 or go to the wrong place. If I go in and
delete those, that is all I am going to be doing, deletes. Will these
be rolled back since I am only deleting? Should they even be
deleted? Should I
What do you think about getJSON for simple "is username available"
type checks?
I'm thinking, go with the simple and more compact method. Return your
errors in JSON and parse them out.
Since these are just quick "exists in database" lookups, the chances
of failure are low. If they do fa
the
About page.
So, could you guys be a bit more specific with your critique of
existing documentation?
Jörn
On Thu, Sep 24, 2009 at 7:57 AM, Scott Haneda
wrote:
Wow, I thought I was the only one. Has anyone looked at the form
validation
docs? I thought it was a wiki style though? No o
Wow, I thought I was the only one. Has anyone looked at the form
validation docs? I thought it was a wiki style though? No one can
edit?
--
Scott * If you contact me off list replace talklists@ with scott@ *
On Sep 23, 2009, at 9:21 PM, rickoshay wrote:
The documentation is going to re
Hello, I created this:
http://dl.getdropbox.com/u/340087/Drops/09.20.09/form-e3ae8599-180653.html
The basics are that jQuery will immediately hide a div that is the
right most column.
$('div.right').hide();
I have three input elements that when focus is given, I take the
next() element, wh
Right, this is sort of a long debate, which I see pop up on mailing
lists for email servers. In the end, I think you need to go by the
standards.
Just because hotmail breaks the rules, does not mean you want to
punish some other user who does not use hotmail, just because they use
a ch
The one letter for tld is probably a bug. The characters you list are
legal to the left if the last @ sign.
--
Scott
Iphone says hello.
On Sep 14, 2009, at 10:59 AM, mattso wrote:
How come the validator for emails only needs one letter for the tld
and allows non valid characters like /
Look at the network panel in firebugs or activity monitor in Safari.
See what URL is being requested for the images. You can then see where
there error in your path is.
--
Scott
Iphone says hello.
On Sep 12, 2009, at 11:10 PM, macsig wrote:
Hello guys,
I have a series of divs (all with
Anyone; can I get some love :)
--
Scott
Iphone says hello.
On Sep 11, 2009, at 2:24 PM, Scott Haneda wrote:
I have been poking around at the various file upload solutions.
Wondered what people here had to say about which are the best.
I am looking for single file upload, to image
Maybe your use of appendTo is wrong, I just did this test:
$.getJSON("http://www.pomona.edu/dev/home/spotlight.json";,
function(data){
$.each(data.items, function(i, item){
$("div").append(i);
});
});
I got 01234, so the index of each item in y
I have been poking around at the various file upload solutions.
Wondered what people here had to say about which are the best.
I am looking for single file upload, to image crop. I would like to
use jCrop, so anyone that has experience implementing that with it,
let me know what you cho
?
--
Scott
Iphone says hello.
On Sep 7, 2009, at 9:24 PM, Scott Haneda wrote:
Here is a test link:
http://dl.getdropbox.com/u/340087/Drops/09.07.09/user-21bbf008-212305.html
There is a good deal going on I am not able to solve, delete key
being one of them. I can not keep the span updated as I want
the key entry.
On Sep 7, 2009, at 8:31 PM, Scott Haneda wrote:
I have a pretty basic set of things I want to do:
Capture key press, compare against an allowed list, block keys that
are not in that list, replace a space by a dash if entered.
As this is happening, I have a span I wanted to be
I have a pretty basic set of things I want to do:
Capture key press, compare against an allowed list, block keys that
are not in that list, replace a space by a dash if entered.
As this is happening, I have a span I wanted to be updated with the
live values. The username field at https://
Encode the URL string prior to submitting? This is almost always the
safest method. Just decode it server side. With all encoded
characters, JQ has nothing it need add +'s to.
--
Scott
Iphone says hello.
On Sep 4, 2009, at 1:19 PM, Aaron Kreider
wrote:
I'm using $("form").serialize(
This is an intersting problem though. Without the ability to edit the
HTML, a page refresh is going to kill any work you did.
Granted, in most cases, the need for a page refresh would not matter,
as the browser is going to drop the input form data anyway.
One advantage would be you could
Hello, as an example, https://twitter.com/signup when you enter in a
username, a static string of "Your URL: http://twitter.com/USERNAME";
has the USERNAME replaced with what you are typing in.
This is day one of JQ for me. I was looking at the onkeyup event in JS
in general, but I figure i
26 matches
Mail list logo