Nevermindfigured it out :)
On Mon, Apr 19, 2010 at 9:44 AM, Ron Mast wrote:
> Good morning gang,
>
> I'm attempting to use Modal Confirmation from
> http://jqueryui.com/demos/dialog/#modal-confirmation
>
> I have the example working and code looks like so:
>
>
>
>
> jQuery U
Aaron,
Not sure if you caught it, but I screwed up some quotes in my code
snippet (stupid iphone). It should be:
$('ul.foo li ul').addClass("bar");
On Mar 1, 9:25 am, Aaron Johnson wrote:
> Greg, Nathan, Thanks very much for your help!
>
> On 1 March 2010 14:58, Nathan Klatt wrote:
>
> > On M
Looks like the problem is OS-specific. In Ubuntu 9.10, for example,
there is an option that is enabled by default in the user's keyboard
preferences
which causes key-holds to simulate multiple key-presses. Turning this
off results in the expected behavior. On Windows, the default behavior
is for ke
This will add the class for you. Put it in the document ready function
if you want it on page load or in whatever function you want to call
it from.
$('ul.foo li 'ul").addClass("bar");
On Mar 1, 5:06 am, Aaron Johnson wrote:
> Hello...
>
> I have an unordered list containing nested lists...
>
>
I think I found an answer for this problem. The answer is: do not create a
dialog on the fly (i.e. do not create a div on the fly and then
$(div).dialog()), but create a dialog before initializing the google map.
On Wed, Feb 24, 2010 at 2:41 PM, Thai Dang Vu wrote:
> Hi,
>
> I create a jQuery di
On Sun, Feb 28, 2010 at 12:00 AM, Erik wrote:
> { $(this).removeClass("ui-state-active"); }
No, don't do that - that'll screw up the accordion, I expect. I mean
something in the css like:
.ui-state-active:hover {
background-color: inherit; /* or "none" or some specific color */
}
Nathan
Thanks nathan...
Where would I place this in this?
$(function() {
$("#accordion").accordion({
autoHeight: true,
header: '.subcat'
});
{ $(this).removeClass("ui-state-active"); }
Is this the correct format?
Erik
On Feb 26, 3:56 pm, Nathan Klatt wrote:
> On Fri, Feb 26, 2010 a
I looked at and I still like the easy tag...
Erik
On Feb 26, 8:24 am, "Cesar Sanz" wrote:
> this IS interesting!!
> Some geeks works fine!
>
>
>
> - Original Message -
> From: "Vikas Patidar"
> To:
> Sent: Thursday, February 25, 201
this IS interesting!!
Some geeks works fine!
- Original Message -
From: "Vikas Patidar"
To:
Sent: Thursday, February 25, 2010 2:51 PM
Subject: Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!
Hi, there is another solution more easy and cool
try it...
C
That won't trigger a load event
This is as close as you'll get (using an image object to actually load
it, and then using it.
var imageObj = new Image();
$(imageObj).attr("src",imagePath).load(function(){
// do whatever else you want to do in here too
$("#leftCol").css("background
2 possibilities:
via attribute:
$("#mytd").attr("background", "path/to/image.jpg");
or via CSS
$("#mytd").css("background-image", "path/to/image.jpg");
that should work fine for your needs (make sure the paths are correct)
inal Message -
> From: "Erik"
> To: "jQuery (English)"
> Sent: Wednesday, February 24, 2010 6:32 PM
> Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!
>
>
> http://www.dillerdesign.com/experiment/DD_roundies/
>
> On
thanks..
First time I heard about it.. .cool stuff!
- Original Message -
From: "Erik"
To: "jQuery (English)"
Sent: Wednesday, February 24, 2010 6:32 PM
Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!
http://www.dillerdesign.com/experiment/
argh, i send the answer only to the author.
well for anyone else :
you have to set an ID to the A element, the same ID of the function's
trigger, then set a class .toprint fot the elements to print, finally
set to the jqprint function a Click calling action
for example:
...
elements to print
http://www.dillerdesign.com/experiment/DD_roundies/
On Feb 23, 3:09 pm, "Cesar Sanz" wrote:
> What are roundies?
>
>
>
> - Original Message -
> From: "Erik"
> To: "jQuery (English)"
> Sent: Tuesday, February 23, 2010 10:50 AM
>
What are roundies?
- Original Message -
From: "Erik"
To: "jQuery (English)"
Sent: Tuesday, February 23, 2010 10:50 AM
Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!
Use the ROUNDIES script for IE7, which is really easy. I personally
don
Use the ROUNDIES script for IE7, which is really easy. I personally
don't care for IE8 so I convert IE8 to work like IE7 by placing the
following tag under the :
No problem,
$(document).ready(function(){
});
and
$(function(){
});
are the same - both will run whatever you have in them when the DOM is
ready - the second is just a kind of shorthand for the (much easier to
read) first. Docs:
.ready()
http://api.jquery.com/ready/
$(callback)
http://api
Hi Peter,
Indeed! It works ;-) THANKS!
It was enough to remove line with >> $("#elements").sortable(); <<
So, what is the right place to put:
$("#elements").sortable();
?
in my example:
the first place was outside "$(document).ready(function()"
the second place (where I added event) was inside "$
In your example, you have two calls to $('#elements').sortable().
The second one has the update event added, but the first (the one which
creates the sortable) doesn't. If you add the update handler to the
first call, it works OK.
on 23/02/2010 08:26 rafald said::
Hi ,
please check this:
http
Hi ,
please check this:
http://jsbin.com/oququ3/6/edit
As you can see:
- sortable list works
- accordion works
...but:
- POPUP 'update' does not come
what could be wrong here?
regards
Rafal
Hi ,
please check this:
http://jsbin.com/oququ3/6/edit
As you can see:
- sortable list works
- accordion works
...but:
- POPUP 'update' does not come
what could be wrong here?
regards
Rafal
Hi ,
please check this:
http://jsbin.com/oququ3/6/edit
As you can see:
- sortable list works
- accordion works
...but:
- POPUP 'update' does not come
what could be wrong here?
regards
Rafal
Hi ,
please check this:
http://jsbin.com/oququ3/6/edit
As you can see:
- sortable list works
- accordion works
...but:
- POPUP 'update' does not come
what could be wrong here?
regards
Rafal
On Mon, Feb 22, 2010 at 11:10 AM, rafald wrote:
> ok...I see on you page it works...I double checked my code.
> ...
> but the problem is I need accordion as well.
If you update the jsbin page to how you think it should be (i.e., add
the accordion) I'd be happy to look into what's wrong. :)
Go to
> it is about jQuery media plugin (http://malsup.com/jquery/media/
> misc.html)
>
> Can I use
>
> http://www.google.co.in";>
>
> This to load EXTERNAL DOMAIN html page in an iframe that media plugin
> I create.
Yes, this should work. The media plugin just creates an iframe for
this content.
ok...I see on you page it works...I double checked my code.
Here what happens
WHEN I replace THIS:
$(function(){
$("#elements").sortable();
$("#elements").disableSelection();
});
$(function() {
$("#accordion").accordion();
});
$(document).ready(function(){
$('#elements').sortable({
update: func
On 22 Lut, 03:43, Nathan Klatt wrote:
> Hi Rafal,
>
> In what way does it not work? I transcribed your code into jsbin and
> it seems to be fine, though I don't have any roundbox styling being
> applied:
>
> http://jsbin.com/oququ3/edit
>
> Nathan
Hi
I am not surpised you don't get it rounded ;-
Thanks Nathan, it works as expected !
Great help !
On 20 fév, 21:34, Nathan Klatt wrote:
> On Sat, Feb 20, 2010 at 9:13 AM, macgyver47 wrote:
> > div1 class="post"
> > div class="title"
> >
> > div10 id="post"
> > div class="title"
> > I am trying: clicking on div#title belonging to di
I figured it out. All I had to do was move this part to the very end
of the page.
// prepare the form when the DOM is ready
$(document).ready(function() {
// bind form using ajaxForm
$('#msg_form').ajaxForm({
// target identifies the element(s) to update with the server response
target: '#sender'
On Feb 18, 9:15 pm, Charlie22 wrote:
> Hi all,
> I have trouble passing value as selector value to other function.
>
> $(document).ready(function(){
> var id = 'Test';
> $('#Name').keyup(function(){
> id = '#Mobil';
If you want variables to be local to their encl
That's brilliant! Thanks.
maybe something like this?
$(function(){
$('#type').change(function(){
var selected = $(this).children().filter(':selected');
if(selected.val()=='parttime'){
$('#numOfHours').show();
}else{
$('#numOfHours').hide();
}
});
});
This is untes
solution:
$('#type').change(function() {
if($('#type :selected').val() === "parttime") {
$('#numOfHours').show();
} else {
$('#numOfHours').hide();
}
})
this is what i have now
$('#numOfHours').hide();
$('#type').change(function() {
if($('#type :selected').text() == "parttime") {
$('#numOfHours').show();
} else {
$('#numOfHours').hide();
}
On Feb 17, 2:08 pm, 123gotoandplay wrote:
> How do i show
Instead of doing $(this).ajaxSubmit(options);
try
$('#formId').ajaxSubmit(options);
where #formId is the id of the form you are submitting.
On Feb 14, 8:58 am, NHARRY wrote:
> I have a form that is loaded using .load it is then posted using the
> jquery form plugin. But it won't post see code
Yes the div with id "Preview" is available. If I use the
standard .serialize and .load from jquery it works well but
unfortunately .serialize does not handle file uploads.
Peter
On 12 Feb., 14:26, "Jonathan Vanherpe (T & T nv)"
wrote:
> And more importantly, does it have the same case?
>
>
>
>
Hi Dasher,
That may make the arrows disappear, but the .sf-menu li element is
still stretched out as if there was still an arrow there.
On Dec 31 2009, 9:51 pm, Dasher wrote:
> Hi Frank,
>
> In the "$(document).ready(function() {" area...
>
> Below the superfish ("$('ul.sf-menu').superfish({" ca
And more importantly, does it have the same case?
Marty Jones wrote:
I know this may sound silly but do you have a div element with a id of
'Preview'?
On Feb 12, 5:43 am, Piet wrote:
Dear all,
I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.
Everthings works well but the
I know this may sound silly but do you have a div element with a id of
'Preview'?
On Feb 12, 5:43 am, Piet wrote:
> Dear all,
>
> I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.
> Everthings works well but the response from the server will not
> displayed in the defined targ
Actually I just found that I have the same problem with text inside a
if I put this in the open function with this div located in my dialog,
$("#changethisdiv").html("it is changed at" + new Date().getTime());
It will work one time, then it will no longer change after each time
it is opened..
> Solved. I dont' know exactly what was wrong (...)
Oh, I found : the parameters to $.ajax() have to been included into
json-like brackets !
$.ajax( { parameters } );
Solved. I dont' know exactly what was wrong, although it was most
probably in the callback function.
Maybe the carriage returns.
But this works fine:
$.ajax({
async: false,
url: cart_doc,
type: 'POST',
data: {action: 'retrieve_opt', name: fieldName},
dataType: 'text',
time
Thanks, Leonardo.
This seems being the right answer. However, I fail at replacing the
$.post() request by the more general $.ajax().
Can you see any error in the manner I'm doing the ajax request ?
(The corresponding $.post() code in my first message works fine.)
$.ajax( async: false,
t
On Wed, Feb 10, 2010 at 8:56 AM, Jonathan Vanherpe (T & T nv)
wrote:
> How about you just look at the source code?
>
> http://www.altsoftware.com/alt_news_rotator.js
>
> There's comments and everything
FTW!!!
hno wrote:
hno wrote:
HI
I have seen this pattern in http://www.altsoftware.com/index.php .
there are news menu in the left side . Please visit this site . The
news will be change with a really beautiful pattern in every 5
seconds
I think it has been written with jquery but I don't know how c
(English)
Subject: [jQuery] Re: how to make this really beautifull pattern
hno wrote:
> HI
> I have seen this pattern in http://www.altsoftware.com/index.php .
> there are news menu in the left side . Please visit this site . The
> news will be change with a really beautiful patter
hno wrote:
> HI
> I have seen this pattern in http://www.altsoftware.com/index.php .
> there are news menu in the left side . Please visit this site . The
> news will be change with a really beautiful pattern in every 5
> seconds
>
> I think it has been written with jquery but I don't know how ca
Hi Aquaone
I am using Version 2.0.3
On Feb 4, 11:20 pm, aquaone wrote:
> Please provide the code you're using to invoke tablesorter. It's likely a
> syntax error.
>
> On Thu, Feb 4, 2010 at 05:36, Nagaraju wrote:
> > I am facing problem with jquery.tablesorter.js
>
> > It's working fine if I ha
oh, and i am trying to use the hoverflow plugin. (http://www.
2meter3.de/code/hoverFlow/)
but it assumes you are animating the current div/id
I our case the trigger is another div. but this doesn't work
$("#nav-container").hover(function(e) {
$("#dropmenu"
Hi Chris,
Tx for thinking along / posting the code ;)
I think i am almost there, but the menu doesn't stop when you quickly
hover it continues to drop down and up.
I tested with
$("#nav-container").hover(function() {
$("#dropmenu").stop().slideToggle("fast");
While there are a few problems with your code, I think you could
achieve your desired effect if you threw the ul#slidemenu and
#dropmenu into a containing div and then apply the hover function to
the container.
Something like this:
-- HTML --
M
the error is the last comma in literal object:
the correct is
6. effect: 'fade'
7.});
On 6 fev, 20:35, vengiss wrote:
> Hi, I have a table in my site that shows a list of products I get from a DB,
> each one has and image (thats loaded on a hidden div). I'd like to show on a
> to
Hi Vengiss,
$('#preview_'+id_mercancia).tooltip({
tip: '#img_'+id_mercancia,
effect: 'fade',
});
The error is the last comma.
Correct:
$('#preview_'+id_mercancia).tooltip({
tip: '#img_'+id_mercancia,
effect: 'fade',
});
This error doesn't affect IE and Safari because they ar
still no real answer?
in the meantime I have tried some solutions, but none of them would
work. Please help.
thank you
Thank you Leo, but I'm looking for a Brazilian, so the stakeholders
will understand what is written.
On 5 fev, 16:25, Leo Balter wrote:
> Ok Renatho, maybe you don't know yet but most people in this group don't
> speak this language. Even I understand every word you saying, you should
> post this
OK got non-standard attributes. It forces one rule, that all non-
standard attributes for an element must follow 'id' and 'label'. This
is standardized in setting "var z=2", as it skips past the first
attributes and finds the remaining. Though this is a lot of code for
each level of elements;
var
Slick, and super fast. Makes it so that I do not even want to move
onto JSON ;-)... (JK, my engineers are forcing me too)
Made some minor mods, these add a little time and still processes over
50K lines in about 6-8 seconds, and 100K right about 10 seconds. Now
everything is its own html object re
Well, wow thats nice! Thanks for your answer.
Really awesome, I get an answer!
But I have to use dataType: 'jsonp'. If I use dataType: 'json' the
alert doesn't work.
Oh my god it was so simple and I was thinking about it a million
hours, thank you a lot.
On 3 Feb., 17:25, rnivash wrote:
> Hi m
On Feb 2, 10:37 am, HenryRock wrote:
> I facing a problem in sorting :
>
> 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A
> [ ... ]
> May I know is there have any plugin that can sort the sample data
> above to 1A until 14A?
Note that it's not hard to do this in Javascript, though:
var sorter = (funct
Hi mueller,
The response is look like a function call.
/*
yasearch(
{
"q": "uboot",
"f": ["k"],
"r": [["uboote"], ["uboot chat"], ["ubootpc spiel"], ["uboot
simulation"], ["modell uboot"], ["uboot hamburg"], ["uboot museum"],
["atom-uboot"], ["uboot ping"], ["rc ub
I don't know why Google Groups keeps inserting those semi-random blank lines
in the code! Now I'm curious, so I'm trying something a bit different -
let's see what happens..
function parseXml( xml ) {
var html = [];
html.push( '' );
$(xml).find('sites').$each( function( $site ) {
Cool, it will be good to see your continued work. We may be among the last
holdouts in this mailing list - but I figure since the thread started here
we can carry on.
BTW you may notice one bit of annoying repeated boilerplate in that last
version. See how the callback functions for all the .each(
OK, so this is much better than a lesson in parsing XML. Showing the
errors that I had made in my process, you have also shown sound jQuery
which I was having a hard time picking up from the documentation. I
tend to learn best by doing and getting feedback. Mike, thank you. I
am going to keep this
That is really nice. 100K lines really fast no script time outs. I
need to get back and study a little more. I was so terribly close, but
missed some really basic principles.
I was headed in this direction I was trying to get to the function
(i,parent),function(j,child) I had not quite figured that part out
which is obvious. Let's see what this does.
Thanks
Chad
$('#slideshow').cycle({
fx: 'fade,cover'
});
On Feb 1, 8:14 pm, Florushj wrote:
> I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately
> I'm no jQuery hero :-(
>
> This is what I want in short:
> It's basically this
> example:http://www.malsup.com/jquery/cycle/pager-do
No worries on the XML vs. JSON. It's been interesting to watch your progress
in refactoring the code. I hope it's useful for other people too.
A few notes on the latest version...
* Avoid using ALLCAPS or PARTIALcaps in a variable name. Many JavaScript
programmers will think you intend such varia
Let's me have multiple children:
function parseXml(xml) {
$(xml).find('sites').each(function(){
var PARENTarr = jQuery.makeArray($(this).find('>element'));
$(PARENTarr).each(function(i){
$("div").append(""+
This is better. The arrays are much more efficient, and I cut the code
by more than half. I know, I know JSON, I will get there, this is
teaching me way more though. I still would like to be able to
determine my level of nesting abstractly, and also getting out non-
standard attributes.
BTW proces
This is better. The arrays are much more efficient, and I cut the code
by more than half. I know, I know JSON, I will get there, this is
teaching me way more though. I still would like to be able to
determine my level of nesting abstractly, and also getting out non-
standard attributes.
function
OK this is some progress. Still want more abstraction where I can,
though this is much improved. I also need to be able to get arrays of
attributes abstractly.
function parseXml(xml) {
$(xml).find('sites').each(function(){
var PARENTarr = jQuery.makeArray($(this).
See this link:
http://db4free.blogspot.com/2006/06/sorting-of-numeric-values-mixed-with.html
wrong place to post - sorry - using jquery cycle -
On Feb 2, 9:45 am, rc cola wrote:
> Any help would be greatly appreciated. I can send screen shot - site
> is still in dev.
A fix has been posted here :
http://github.com/brandonaaron/livequery/issues/#issue/2
On 17 jan, 15:00, "pastel.pro" wrote:
> I'm not using blockUI and livequery doesn't work well with jquery 1.4
> (with 1.3 it's perfect).
> Livequery often work activates when I lunch firebug (strange...). So
I've replied on that here:
http://forum.jquery.com/topic/1-8rc1-autocomplete-search-options
So far I don't plan to update the standalone plugin, though if you can
provide a patch for 1.4 compability, I'd push out another release.
Jörn
On Mon, Feb 1, 2010 at 3:32 PM, Anthony wrote:
> Hi,
>
> Tha
Hi,
Thanks for your responses. Can I ask 1 follow up question...
Bearing in mind this has now been integrated into jQuery UI 1.8rc1, is
it safe to assume that there any no plans to make the old version 1.1
of the 'Autocomplete' plugin compatible with jQuery 1.4? The reason I
ask is that it looks
Firstly, just a warning that this is a first post.
I've had a look at the link, and it seems to be redirecting me back to
the homepage, however, I would think that to produce the effect you
want you should just be able to use find(). so the following should
work:
$(document).ready(function() {
$(
Yes, and yes.
On Sun, Jan 31, 2010 at 3:41 PM, Jose wrote:
> On Fri, Jan 29, 2010 at 1:38 AM, Richard D. Worth
> wrote:
> > The latest version is jQuery UI Autocomplete, and it is compatible with
> > jQuery 1.4. You can find it in jQuery UI 1.8rc1:
> >
> > http://blog.jqueryui.com/2010/01/jquer
On Fri, Jan 29, 2010 at 1:38 AM, Richard D. Worth wrote:
> The latest version is jQuery UI Autocomplete, and it is compatible with
> jQuery 1.4. You can find it in jQuery UI 1.8rc1:
>
> http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/
Is the UI autocomplete based on Jörn's autocomplete ? If see
My apologies. I meant to also say that I tried it using jquery-1.3.2
with the same bad result. So I have no clue where the trouble lies.
On Sat, Jan 30, 2010 at 11:04 PM, brian wrote:
> A little update to this. I tried a different approach, hiding the form
> at the bottom of the page and appendin
A little update to this. I tried a different approach, hiding the form
at the bottom of the page and appending it below a particular comment
when a "reply" button is clicked. It seems that even just using
append() will cause the same misbaheviour.
That is, if I do not hide the form on page load, i
On 30/1/10 15:26, "Erik" wrote:
> I am looking for countdown timer - Text based that I can format with
> CSS.
I use one from http://keith-wood.name/countdown.html.
Apart from Keith's site, you can see how I use it at
http://www.pickthebucket.org.uk/buckets/buckets_Vw.lasso
The one thing to wat
this treats processes each order of element separately as a variable.
If I can append these correctly. I think that this might be a slightly
better process. It is at least treating things in a more object
oriented manner.
$(xml).find('sites').each(function(){
PARENT = $(this);
Now I am treating each order of elements separately as their own
objects. This is much faster, if I can figure out how to append the
results correctly.
function parseXml(xml) {
$(xml).find('sites').each(function(){
PARENT = $(this);
var PAR
Thank you nathan!! You got yourself free skin care!!! Thank you.
Erik
On Jan 29, 3:03 pm, Nathan Klatt wrote:
> On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote:
> > var activeTab = $(this).find("a").attr("href"); //Find the
> > rel
>
> Delete the find("a") bit and you're good.
>
>
Nathan,
Thanks for your help. I'm really stumped!!
Initially when it loads, it look s right, but when I click on the
either tab, I loose the content.
Erik
On Jan 29, 2:26 pm, Nathan Klatt wrote:
> On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote:
> > var activeTab = $(this).find("
www.naturalskin.com/test.htm
it's the right side panel...
Erik
On Jan 29, 2:26 pm, Nathan Klatt wrote:
> On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote:
> > var activeTab = $(this).find("a").attr("href"); //Find the
> > rel
> > attribute value to identify the active tab + conte
This gets the variables at the top level and gives me the correct
count for each level.
function parseXml(xml) {
$(xml).find('sites').each(function(){
var PARENT = $(this).children($(this).attr('id'));
var PARENTcount = PARE
Small Tweaks, less lines of code. Still no major breaks in breaking
the nested model for XML parsing. Things that I am interested in are
being able to determine levels of nesting abstractly, being able to
determine attributes abstractly, being able to hold results in an
Array, build the array, and
Hum sorry, it does not work correctly...
All submit fields are posted, impossible to know which one we click
on...
I'm working on it.
On 29 jan, 11:08, Adysone wrote:
> Hi,
>
> I found a way to do that, I was confronted at the same problem.
> Juste comment the line 556 in jquery.form.js :
> //
Hi,
I found a way to do that, I was confronted at the same problem.
Juste comment the line 556 in jquery.form.js :
// (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
It works for me.
Enjoy ;-)
PS : Excuse my English, I'm French.
On 20 jan, 20:36, Jamie wrote:
> Hi
>
> I hav
Mike,
Thanks so much for taking the time for writing this tutorial. I see
how this is effective. I attempted to do similar things with the XML
however...
The Data Objects for JSON are much more simplistic structurally, and a
little obtuse for reading visually. As I mentioned this simply is a
model
The latest version is jQuery UI Autocomplete, and it is compatible with
jQuery 1.4. You can find it in jQuery UI 1.8rc1:
http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/
- Richard
On Thu, Jan 28, 2010 at 6:44 PM, dirk.diggler wrote:
> Anthony,
>
> The short answer would appear to be no, it's
Anthony,
The short answer would appear to be no, it's not compatible. To be
fair, I'm running a slightly tweaked version of the plugin, so its
entirely possible the incompatibility is something I introduced. This
seems unlikely, though, since Firebug never even hits the breakpoint
I've set in the
No offense, but that code is really frightening. Not your fault though.
JSON is not only much faster than all this XML/DOM garbage, but it is *much*
easier to understand and use too!
If you're coding JavaScript, you need to know how to use ordinary JavaScript
objects and arrays, yes?
If you know
I'd try:
Response.ContentType = "application/json"
right before the first writing
On Jan 28, 2:32 pm, Jason Knight wrote:
> Hi all,
>
> I've loved using jQuery these past few months, but I'm really pulling
> my hair our here.
>
> The following is the "endpoint" asp code that gets called to pop
Funny thing is, my lead engineer said the same thing...
Mostly this was an experiment to gain a better understanding of DOM
outside of HTML. This is about as exciting as a SAX parser when it
comes to speed (<5sec in safari for 20K lines, slightly longer in
FireFox, and noticeably longer in Chrome)
I've looked at the color plugin, but was unsuccessful, but I will have
to try again, I guess. And there is an image behind it, if there
weren't then this would be easy, and I would have never asked.
Thanks all.
On Jan 17, 6:49 pm, MorningZ wrote:
> For sure check out the "color.js" plugin (Goog
Hi,
Thanks for your reply.
Please go this URL: http://code.google.com/p/jquery-column-navigation/
In this a sample html example will be present. If we use the jquery column
navigation plugin, while reload the page by default 'HomePage' and
'Contents' will be listed in the page. If we click on th
1 - 100 of 64574 matches
Mail list logo