some time ago i started a rewrite of the lightbox plugin for jquery
and i encountered the same problem.
strangely, safari doesn't support the Image() function in a way, that
it creates a new DOM-Element for you.
the solution was not to use the javascript Image() function but use
img = doc
Two links that might help as well.
http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12
http://blog.viget.com/team-viget-under-the-hood/
Cheers,
George.
On Aug 13, 1:27 am, interfaced <[EMAIL PROTECTED]> wrote:
> Is there a way to take this scrolling functionality and use it
I'm working on a sample gallery viewer app with 3 panes. Left =
gallery listing, middle = album listing, and the far right = image
viewer. I'm loading in the contents of each using jQuery. I've finally
gotten to the far right one and I'm trying to load in the image using
a get() call and it's not
Very good... thanks, Joel...
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Joel Birch
Sent: Thursday, October 04, 2007 11:33 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: [Site Submission]: nbc.com
On 10/5/07, Rick Faircloth <
On 10/5/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> So, superfish can do those large drop-down, across the page menus?
> Rick
Yes, the types of menu that Superfish can power is is not limited to
the few demonstrations I show with the documentation. If you have the
CSS skills, you can create n
So, superfish can do those large drop-down, across the page menus?
Those are nice...I've never been a fan of drop-down or fly-out menus
because I've noticed too many people having trouble remembering how
to drill down to where they saw something. So I've always stuck to the
traditional left-colu
Unfortunately, .so far as I know, .NET doesn't let you post to a user
control.
For what it's worth, the .NET projects I've done with jQuery used a separate
ashx page to handle all ajax requests.
I created an IHttpHandler, mapped it in the web.config file, and in that
handler applied the va
http://www.mredesign.com/demos/jquery-show-hide/#thedemo
got it working just the way I wanted (thanks, Glen!)
I wrote out these rules long hand as I went through the creation/learning
process,
but I am sure there are several ways I could compact this to fewer lines.
Anybody want to have a sh
On 10/4/07, crybaby <[EMAIL PROTECTED]> wrote:
>
> I tried the following code, and I don't get the cursor to blink in
> input text field. Any idea why is that?
>
>
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
> http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
>
>
On 10/5/07, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> They appended a few plugins to the core jquery file and packed them, so I
> couldn't tell exactly what else was being used.
> --Karl
Thanks Karl!
I found it in with the packed jQuery core and a bunch of other
plugins, some packed (tabs, shad
tEsTiNg
Is this thing on... ?
--
--
"MichaelEvangelista" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Odd, I can read the group fine with my newsreader but am getting
bounce messages from my post, saying I have to join the group to post.
I'll try deleting the account and rejo
I was thinking toggle() would always do the first function on the first
click, even if the class is already in place.
i.e. clicking on p.selected in the DOM would give you a null click the first
time with this example. Is that right?
I was able to get what I needed by using toggle() on the sh
Hey, Congrats on that, Joel!
They appended a few plugins to the core jquery file and packed them,
so I couldn't tell exactly what else was being used.
Very, very cool!
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Oct 4, 2007, at 10:40 PM, Joel Bir
When you get that error in Firebug, it's almost always because the
jquery.js file has not been included or your reference to it is
pointing to the wrong location. Take a look at "Setting up the HTML
Document" beginning on page 8, especially this part on page 10:
After the stylesheet is refe
Odd, I can read the group fine with my newsreader but am getting
bounce messages from my post, saying I have to join the group to post.
I'll try deleting the account and rejoining
On Oct 3, 10:34 am, RealET <[EMAIL PROTECTED]> wrote:
> * MichaelEvangelista tapuscrivait, le 03/10/2007 17:44:> Is
On 10/5/07, Steve Finkelstein <[EMAIL PROTECTED]> wrote:
> Dang, I really like the mouseover menu they have on their landing
> page. Is that just simple CSS?
Wow, that menu uses my Superfish plugin! What a thrill to see it hit
the big time :)
Joel Birch.
crybaby,
Two questions:
Did you include the jquery core file? ie. jquery-1.2.1.js or
jquery-1.2.1.pack.js
Is the path to the file correct?
On 10/4/07, crybaby <[EMAIL PROTECTED]> wrote:
>
>
> I just got the Learning jQuery book from amazon delivered yesterday.
> I am trying out the first chapter
I meant to say:
"get()" (without a number argument) will return _all_ the results in an
array, regardless of whether there is 1 or 200 results in the jQuery
object.
Karl Rudd
On 10/5/07, Karl Rudd <[EMAIL PROTECTED]> wrote:
> Try:
> var doodad = $("#plasma").get(0);
> or
> var doodad =
Try:
var doodad = $("#plasma").get(0);
or
var doodad = $("#plasma")[0];
"get()" (without a number argument) will return the results in an
array, regardless of whether there is 1 or 200 results in the jQuery
object.
Karl Rudd
On 10/5/07, Mark Lacas <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
Hi all,
My thumbnails in jCarousel are distorting the aspect ratio of my
photos. Here's an example:
http://www.f1autoimports.com/inventory/single/11
Would anyone be kind enough to tell me how I can re-adjust the default
size to make this look more 'proper' per se?
Thanks. :-)
- sf
I develop a tchat in ajax and needed to save some space in the json
that comes back from the server, so instead of sending messages like
[Name:Value,Name:Value,..] which can get quite big if you return a
collection of 50-100 users with lots of info, i wanted something more
like [Value,Value,Va
Thanks a ton! It works great.
On Oct 4, 12:12 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote:
> Hi Ryura,
>
> I have to be quick because I am supposed to be asleep, but basically:
>
> 1) remove the left padding on .nav li ul
> 2) change any value that is 9.45em or 7.45em to read: 160px. This is
> be
Interesting, I googled up and found an example of this:
http://www.quirksmode.org/js/flash_call.html
Not jQuery as such in the demo, but any function you write can refer
to jQuery.
On Oct 5, 8:10 am, "Sam Sherlock" <[EMAIL PROTECTED]> wrote:
> your flash would need to be wmode=transparent
>
> an
Thanks for the tip John.
On 4 okt, 18:48, "John Beppu" <[EMAIL PROTECTED]> wrote:
> You might want to get on irc and ask on #webkit on irc.freenode.net .
>
> On 10/4/07, bytte <[EMAIL PROTECTED]> wrote:
>
> > It works ok in all tested browsers (ff mac/win, ie, opera mac/win),
> > yet not on safar
@Sharique
Yes, it'll work with .NET (just create an aspx page that spits out a
table as per the instrux), and set the 'url' param accordingly in the
options. Remember, ingrid's just making an ajax call to some more
HTML. Something like this will work:
$(document).ready(
function() {
I have a plugin available on my site that is meant for working with
dates. http://grover.open2space.com/node/157.
The docs are a little rough, and there have been a couple minor reported
issues. But otherwise the date manipulation code works good. I
wouldn't use the popup calendar that's in
Hello,
This works when calling an external javascript library:
var doodad = document.getElementById("plasma");
Drag.init( doodad );
And this doesn't:
var doodad = $("#plasma").get();
Drag.init( doodad );
They both return [object HTMLDivElement]
Am I missing something?
Thanks,
ml
I don't know what's up with these groups but none of my replies are
getting posted...
Joel,
I took a look at your code and your use of the timeout function was
exactly what I needed. Thank you.
Wizzud,
Thanks for pointing out my mess between parent and children. I
scratched that whole thing.
If
Thanks Glen,
I have the following
$(document).ready(function() {
initSlideboxes();
function initSlideboxes()
{
$('#slidebar').slideDown("slow");
setTimeout(function()
{
$('#slidebar').slideUp("slow");
}, 7000);
$('#slidebar').html($('#hidebar').html());
$('
I have noticed a bug with jQuery 1.2.1 and any type of sortable
extension (I have tested with both Interface and UI) where once you do
the initial sort, jQuery will throw a bunch of errors every second in
an infinite loop. I can reproduce their error easily on Firefox 2
with not only my script (w
I tried the following code, and I don't get the cursor to blink in
input text field. Any idea why is that?
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
$(document).ready(function(){
$('[EMAIL PROTECTED]"text"]
I just got the Learning jQuery book from amazon delivered yesterday.
I am trying out the first chapter. When add the alice.js on the html
file and open it into the browser, I get this error in firebug:
$ is no defined
my alice.js file has the following content:
$(document).ready(function() {
Brook:
Yes, and it's a match made in heaven because jQuery is, in my opinion,
unmatched at DOM traversing, event handling and element manipulation.
Ext, as you notice when you're drooling, is by far the best framework
for making things pretty.
As for working together, as long as you download the
Thanks Wizzud... i scratched that whole jumping up and down within the
parents and children thing... it was overkill in the first place.
Thanks for your help though!
On Oct 4, 4:08 am, Wizzud <[EMAIL PROTECTED]> wrote:
> Some ideas...
>
> Firstly, if you return false from any event handler it wil
Joel,
The problem is I didn't want to spend another day or two rewriting my
whole menu system and css files while trying to figure out another
menu plugin. Mine is working just fine and has been tested and has
worked in all browsers for over a year, i just wanted to convert the
js to jquery to cu
Published:
http://jsharea.googlecode.com/files/jshArea-01.tgz
Some more modifications to the handy "jqMultiSelects" plugin by
rob.desbois (http://code.google.com/p/jqmultiselects/)
An additional optional parameter to define the mode as one of
'move' (the default, old behavior), 'copy', or 'remove'
Created to allow duplication in the destination select box.
A
I want to create a 'closed' object (sorry, not sure what the right
term is), e.g.
var myObj = {
foo : function() {
$("#myLink").click(function(){
// How can I call the bar() method from here? What I would
// really like to be able to do is call...
// this.bar();
//
hi all
it ok I managed to do it another way using .find
I noticed the following problem in using jquery AJAX with .NET:
NOTE: I don't have the below problems if I use AjaxPro, just wanted to
do
the same with JQuery. Is this is possible, or should I just stick with
AjaxPro.
1) Cannot return a Datatable to the callback function
[AjaxPro.AjaxMe
your flash would need to be wmode=transparent
and you'd need to call a javascript function from within flash that in turn
calls the grey box function
since jquery applies the onclick event to all anchors with a class of
greybox you'll need simluar code inside you function that you call from
flash
Maybe! I haven't used jQuery live yet so I couldn't say. Do you have an
example of it working like this?
Cheers,
Kelvin :)
Alexandre Plennevaux wrote:
isn't the jquery live plugin exactly meant to do that? I have it work here
along with jscrollpane and it works perfectly.
-Original M
$('.stuff dl').Squeezebox();
$("a.expandall").click( function() {
$('.stuff dl dd').slideDown("fast");
$('.stuff dl dt').addClass("selected");
return false;
});
worked just fine.
Thanks for reading,
Will
will wrote:
> Hi,
isn't the jquery live plugin exactly meant to do that? I have it work here
along with jscrollpane and it works perfectly.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Kelvin Luck
Sent: jeudi 4 octobre 2007 21:21
To: jquery-en@googlegroups.com
Dang, I really like the mouseover menu they have on their landing
page. Is that just simple CSS?
On 10/4/07, John Resig <[EMAIL PROTECTED]> wrote:
>
> > Maybe we can get John on Jay Leno...
>
> That would be the most boring late night interview, ever. :-P
>
> --John
>
Josh Nathanson schrieb:
Steve, odd that I was just helping another poster named Fabien with
this yesterday. Here's the way:
$("#myform").submit(function() {
// do your extra form stuff here
var v = $(this).validate(validateOptionsHere);
if (v.form()) // runs form v
Fabien Meghazi schrieb:
Do you bind submit buttons onclick or form's onsubmit for validation ?
The submit event. You can submit a form by pressing enter without any
submit button.
-- Jörn
It shouldn't be too slow to call jScrollPane on your div after everytime
you add content to it. Is this what you tried?
I just did a quick bit of playing around with making the scroll pane
automatically update itself and got it working in Firefox thanks to the
DOMNodeInserted event but could
I am not sure what you are trying to do in case 1. In case 2, the cause is
because iis doesn't serve ascx files. Browse to
http:://website/wucPeopleList.ascx. What you see if the same thing jquery
sees when you try to post to it.
It is my understanding you can continue to use AJAXpro on the
Guy Fraser schrieb:
If you could match the feature set of the nlstree [1] it would be really
awesome:
[1] http://www.addobject.com/products/javascript/tree/nlstree.php
If you need keyboard navigation, async loading and d&d and similar stuff
you need to either wait for the UI tree component
It's just a set of UL and LI tags. I'm sure you could put any code you like
in there.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ty
Sent: Thursday, October 04, 2007 2:33 PM
To: jQuery (English)
Subject: [jQuery] Re: Cool sitemap code
Than
Thanks man. I have play it with more. I want to replace update panel
with jquery forms.
On Oct 5, 12:09 am, seedy <[EMAIL PROTECTED]> wrote:
> Ok so I haven't tested this , but I notice a few things right away.
> Your tags point to different paths, jquery seems to be in /js and
> the forms plugi
What?!? It doesn't build the sitemap list FOR you? Screw that!
Just kidding. That's a NICE little bit of code. VERY sweet.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: Thursday, October 04, 2007 2:20 PM
To: jQuery Discussion
That's funny, I was just plowing through a filtered list of the jquery list
emails, trying to figure it all out. Thanks for the assist Josh, knew it
should be something simple.
--
Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
Thanks Rey bippety-BeatBox-Bang-O
hey the Site map could contain links to the actual pages, could it
not?
Just curious, I'm thinking that's pretty much the point of a site map,
one-click access to all things in the site.
Thanks.
On Oct 4, 3:20 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> So his maj
Steve, odd that I was just helping another poster named Fabien with this
yesterday. Here's the way:
$("#myform").submit(function() {
// do your extra form stuff here
var v = $(this).validate(validateOptionsHere);
if (v.form()) // runs form validation and returns true if
So his majesty, Brandon Aaron, demanded that I post this on the list and
as Brandon is a intimidating at times, of course I had to follow orders! ;)
This cool CSS Sitemap uses jQuery and CSS to produce a very neat looking
sitemap.
http://betech.virginia.edu/index.php/2007/10/03/css-sitemap/
ahhh, so the submit handler will run...when? I have some things I need
to do with some of these fields prior to the actual form submission.
On 10/4/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
> Steve, you have an infinite loop, because your submitHandler is
> re-submitting the form, which
Steve, you have an infinite loop, because your submitHandler is re-submitting
the form, which then calls the validate handler, which then runs submitHandler
and so on.
The validation plugin will automatically submit the form if no errors are
found, so you don't need to have a separate submitH
Ok so I haven't tested this , but I notice a few things right away.
Your tags point to different paths, jquery seems to be in /js and
the forms plugin is in /. This is ok if those are the paths to those files,
I just mentioned it as I was not sure if this was intentional or not.
However, the r
Yup, I tried appending first and then adding the src attribute after, still
same error.
I think I am going to bail out on the iframe implementation, and just do a
regular DOM insertion. I'm sick of battling with IE.
-- Josh
- Original Message -
From: Benjamin Sterling
To: jqu
I'm using the validator plugin, and I have some code like this:
var errContainer = $('#CSForm div.error');
$('form#CSForm').validate({
errorContainer: errContainer,
errorLabelContainer: $("ol",errContainer),
rules: {
First_Name: "required",
L
I have one textbox, one button, one label- all asp.net controls.
What I trying to do :
when user click button text of text box is displayed on label.
Here is the code
-
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Forms1.aspx.cs" Inherits="Forms" %>
http://www.w3.org
Josh,
Did you try appending without the src attribute, just to make sure the page
being loaded is not the issue?
On 10/4/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
>
> Hey all,
>
> When trying to create an iframe on the fly and append it into the dom, I'm
> getting an error in IE6: "Expected
Hi, thanks for your answer. We tried this, but when a lot of news are
too slow. We wish to know if maybe there's another solution.
Guillermo
2007/10/3, Alexandre Plennevaux <[EMAIL PROTECTED]>:
>
> AFAIK you have to recall the function, or you can use the jquery live plugin
>
>
> -Original
I find that they play very well together. I use the jquery adapter built to
bridge jquery and ExtJs, but it isn't a necessity, ExtJS has it's own DOM
selector methods. I just find the JQuery syntax very easy, and it's handling
of DOM manipulation very robust. I use ExtJS primarily for it's beautifu
Really nice work.
Did it works will asp.net as well?
On Oct 4, 3:15 am, reconstrukt <[EMAIL PROTECTED]> wrote:
> Hey all,
>
> I just released Just finished the initial release of my datagrid
> plugin. I named her Ingrid. :)
>
> Features in this release:
>
> - resizable columns
> - paging toolba
Hi,
This line:
$('body>.jScrollPaneContainer').css({'height': $w.height() + 'px',
'width': $w.width() + 'px'});
translates to:
"Set the height and width of the element with a class of
jScrollPaneContainer directly inside the body (e.g. not nested any
deeper) to the height and width of the w
Hi,
Glad you like jScrollPane. I can only take a very quick look at this at
the moment but I'm wondering if it's something to do with this bit of
your JS:
window.onload = function(){
$("tr:nth-child(even)").addClass("even");
};
I think I remember having issues where using this "old scho
HI,
I know that I'm on jQuery's discussion list, but I'm tired of search
for this.
What i would like to know is if someone have a snippet of calculation
between two complete dates (year,month,day,hour,minutes and seconds)
Regards
2007/9/13, Flesler <[EMAIL PROTECTED]>:
>
> My opinion.. Live Query is a great plugin, but it's not the fastest
> way to do that (although it is the safest, easiest, cleaniest). All
> the work I made on tables, I solved it using event delegation. Instead
> of binding, unbinding, rebinding, bind on
Hey all,
When trying to create an iframe on the fly and append it into the dom, I'm
getting an error in IE6: "Expected ':'" (that's a colon). Works fine in FF
of course. The basic code:
var i = $("id='panelframe'>");
$("#paneldiv").append(i);
When I comment out the append part, it works
Not sure if this will work, but maybe try passing it as a 2nd arg in the
success call:
var _this = this;
success: function(data, _this){
alert(_this.someProperty):
}
- Jack
Brook Davies wrote:
Thanks for the feecback Jack. I am using the success() method and
within that method I want to
For those that care, the problem ended up being a result of my using
$.each() over a string. Apparently IE won't let you use [] to access
an individual character from a string. The solution for me was to
call .split on the string as I passed it into $.each() so that it
looks like this "$.each(my
Rob
great job.
Two questions:
- how to use your plugin in update pages(with selected item);
- it is possible to start a function after last select field is loaded?
Cheers
2007/9/27, Rob D <[EMAIL PROTECTED]>:
>
>
> Hi Karl,
>
> Thanks for your feedback, I will certainly make that modification
Email Rob Gonda and see what he says about all this. He's the ultimate
source on ajaxCFC anyway. If you get an answer to this, it'd be cool to hear
about it.
Chris
On 10/4/07, Brook Davies <[EMAIL PROTECTED]> wrote:
>
> Thanks for the feecback Jack. I am using the success() method and within
>
I'd say it would be. While CF8 does have built-in JS, the code they've
offered is fairly bloated and a little excessive. It's good for people who
don't know how to write their own JS, but if you want client code that's
lean and mean, then use your own stuff.
_
From: jquery-en@googlegroups
You might want to get on irc and ask on #webkit on irc.freenode.net .
On 10/4/07, bytte <[EMAIL PROTECTED]> wrote:
> It works ok in all tested browsers (ff mac/win, ie, opera mac/win),
> yet not on safari (mac+win).
>
>
> Any idea why it fails in Safari? The Safari Javascript console gives
> me n
Matt,
may be another users can report that occurrence when next button is clicked.
Using FF 2.0.0.7(Firebug enabled) and after page loads, clicking in next
button starts 3 request to the server(remote.php).
Thanks for your time.
Marco Antonio
2007/10/4, matthew knight <[EMAIL PROTECTED]>:
>
>
>
Thanks Rey!
I didn't so much mean about using the built in ajax components, but more
along the lines of all the work ajaxCFC does converting to json and such.
Isn't some of that functionality build into CF8 now?
BrookD
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAI
Steve,
You mention that you use extJS and jQuery. How do they work together and how
is this a beneficial relationship? I drool when I see the ext demos.
How do the two technologies play together?
BrookD
Hi Ryura,
I have to be quick because I am supposed to be asleep, but basically:
1) remove the left padding on .nav li ul
2) change any value that is 9.45em or 7.45em to read: 160px. This is
because you are using 160px wide images instead of text so you want a
fixed unit of measurement for the wi
You need to document.ready() block.
What is happening is that your script is trying to find all the A tags on
the page.
But at the moment it's running, there are no A tags yet. They come
nanoseconds later when the page loads.
$(document).ready(function(){
// Your code here
});
Try again w
My favorite plugin. #1.
Glen
On 10/4/07, george.gsgd <[EMAIL PROTECTED]> wrote:
>
>
> Made some changes to the easing plugin, it now contains all of the
> Penner equations and has name changes for the easing types. I've done
> a compatibility plugin to ease the transition, but felt keeping the
>
There is an ennoying point with the current ContextMenu plugin. When a
menu pops out near a window borders, it is only partially visible.
xing
What is the correct javascript bouding test to apply to reposition the
element correctly ?
I thought maybe there is a jquery plugin for this kind of eleme
Can Flash communicate with jQuery? I would like to use flash to
interact with jQuery like opening up a dialogbox using the greybox.js
plugin. How would I go about doing that any ideas?
The code is activated by the class="greybox"
Blame Google. I sent that message at 10:30 yesterday morning!!
On Oct 4, 8:42 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Sadly I've already gotten BlockUI to do what I wanted. Packed it's at 7k. So
> for the time being I'll keep what I've got, but move to jqModal for future
> projects.
>
>
Hey all, LOVING jScrollpane at the moment, here is a page I'm working
on.
http://cressaid.brettjamesonline.com/bvci/plastek/products1.html
The right area with the grey box is a scrollpane which will have a
bunch of different things in it. If you view it in firefox, you'll see
that the grey scrol
I'll chime in on this topic as well. The Javascript objects that are
available in CF8 are, as Rey said, simplistic and for people who need
a neat little widget in their application. I am still heavily reliant
upon ajaxCFC because I use the Ext library with the jQuery adapter.
For advanced AJAX d
You could also try using setTimeout() like so:
setTimeout(function()
{
$('#slidebar').toggle();
}, 2000);
This will activate the #slidebar toggle after 2000 milliseconds even
is the user is trying to interact with the #slidebar which may not be
what you want. I'm not sure what the slide bar is
Thanks for the feecback Jack. I am using the success() method and within
that method I want to call a method on the current object. The reason is
because I have spawned multiple objects and they all fetch data via ajaxCFC
and I want the correct object to handle the result.
I could save a refer
Like this?
$(document).ready(function() {
initSlideboxes();
function initSlideboxes()
$('#slidebar').slideDown('slow');
setTimeout( function() {
alert( 'timer!' );
}, 1000 );
.slideUp('slow', function() {
$('#slidebartrigger').click(function(){$('#slidebar').toggle
Hi All,
As per this previous post I made
http://tinyurl.com/27gaty
I have cracked on and started to develop a drill down style menu:
I have also uploaded a cut down version of what I am trying to do at
this link:
http://rafb.net/p/KfZAdp80.html
Essentially what I am trying to do is as follow
Thanks Marco,
Also cheers for reporting the bug with the page toolbar textbox - this
is now fixed. Download the latest here:
http://reconstrukt.com/ingrid/index.html#download
Matt
On Oct 3, 8:00 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote:
> Matt,
>
> congratulations!!!
>
> Very very very
I regret, but anything from offered does not work as it is necessary
in Firefox and Safari.
Nevermind everyone, I sorted it out.
On Oct 3, 10:18 am, joelarson <[EMAIL PROTECTED]> wrote:
> The documentation notes that when using the $.ajax() functions option
> datatype="html":
>
> "html": Returns HTML as plain text; included script tags are
> evaluated
>
> however, it does not appear
Well done !!!
Thank you for your plugin
Fabrizio
I have made a very basic slideshow, with help from this list, that
looks for images in a database, then displays them. Here's the link:
http://www.sum.be/project/item.php?item=14&ID=39〈=1 (navigate
through the pics by using the small arrows to the right of the
picture)
It works ok in all tested b
I'm trying to create an unordered list that can be reordered using a
link. What I want to do is show a list of images+text and when you
hit the link for the image it comes to the top of the list and the
others in the list move to fill the space left by the new top list
item. Any guidance would b
I think that would be fair use. Afterall, you are not using the logo
for some other purpose, and you are recognizing jQuery with the logo and
link. I don't see how that would be any different than me putting an
IBM or Microsoft logo into my blog entries with links back to their site.
I'm obv
1 - 100 of 150 matches
Mail list logo