[jQuery] very simple addClass question for Accordion

2008-09-06 Thread sutra
Hi, I am doing an Accordion using the screencast tutorial by John Resig. I already have the menu working but need to add flavor to it, first let me explain that I have added a span class in the dt like so: dta href=/ spanMy Menu/span/a /dt The reason for it is because I have a background

[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Joel Birch
On Sep 5, 12:51 pm, Namlet [EMAIL PROTECTED] wrote: $(#nav1).unbind('mouseenter mouseleave'); Also, I think the syntax requires a comma-separated list of events, not space-separated. Joel Birch.

[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Karl Rudd
Nope, it's space separated. I know, it's unexpected, it caught me off guard as well. Karl Rudd On Sat, Sep 6, 2008 at 5:07 PM, Joel Birch [EMAIL PROTECTED] wrote: On Sep 5, 12:51 pm, Namlet [EMAIL PROTECTED] wrote: $(#nav1).unbind('mouseenter mouseleave'); Also, I think the syntax requires

[jQuery] Re: .unbind hover doesn't work

2008-09-06 Thread Joel Birch
2008/9/6 Karl Rudd [EMAIL PROTECTED]: Nope, it's space separated. I know, it's unexpected, it caught me off guard as well. Okay, wow - thanks so much for correcting me on this Karl. [Rushes off to check existing code...] Joel Birch.

[jQuery] Re: scrollTo anchor or class in div

2008-09-06 Thread Karl Rudd
Use something like id=number1 rather than name=number1. (Just a note, technically an id needs to start with a none numeric character). Then use target: '#'number' + trackid The name attribute is really only for form input elements. Karl Rudd On Sat, Sep 6, 2008 at 12:17 PM, pedalpete [EMAIL

[jQuery] Re: Docs down...really no mirror?

2008-09-06 Thread Andrew Hedges
I'm building a Dashboard widget. It's not quite done, but it mostly works and it doesn't need 'net access because it contains a local copy of the docs. You can find it here: http://code.google.com/p/jquery-reference/ On Sep 6, 12:11 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Until it does ...

[jQuery] Re: jeditable lazy load?

2008-09-06 Thread Mika Tuupola
On Sep 5, 2008, at 10:06 AM, [EMAIL PROTECTED] wrote: I have a grid which uses several edit in place fields. The load time on this is very high and I'm desperately trying to reduce it. Is there a way that the edit in place is not set untill the field is clicked for the first time? Just a

[jQuery] IE and GoogleMaps in a modal window

2008-09-06 Thread Dejan Kozina
Hello list. Is there somebody here that could help me understand a strange thing about IE rendering a Google Map inside of a modal overlay? I've just put together a simple one-page website for a local event at http://www.krasnopolje.com (valid HTML and CSS). Clicking on the 'GoogleMaps' link

[jQuery] jQuery (English)

2008-09-06 Thread manoj
= http://www.freewebs.com/scientistt/ http://friendfinder.com/go/g982154-pmem http://gayfriendfinder.com/go/g982154-pmem =

[jQuery] Re: How do I access the function handlers of an event.

2008-09-06 Thread Rene Veerman
eh, i just realized that the click() of jquery might trigger in another way than setting the DOM element onclick property... you'll just have to try it ;) On Sat, Sep 6, 2008 at 2:10 PM, Rene Veerman [EMAIL PROTECTED] wrote: $('#myid')[0].onclick to call: $('#myid')[0].onclick() DOM

[jQuery] Re: Calculating the size of a string to make it fit into the whole window

2008-09-06 Thread Rene Veerman
might be easier to put a very long string in a div, then set overflow:hidden for that div. but the height and width of the div are div.offsetHeight and div.offsetWidth; they're DOM element properties, not jQuery methods. they're always in an integer number representing pixels. so if you want the

[jQuery] Re: return on error - how to handle an error when an address is not returned in jmaps

2008-09-06 Thread Rene Veerman
doesnt jmaps throw some kind of error (or err return val) when it can't find the address? to put markup for your webapp inside jmaps is bad code design, so dont do it unless you absolutely have to. re-read the jmaps docs. On Fri, Sep 5, 2008 at 3:48 PM, pedalpete [EMAIL PROTECTED] wrote: I've

[jQuery] Re: Meta tag Keyword Upgrade with jQuery

2008-09-06 Thread Rene Veerman
On Thu, Sep 4, 2008 at 7:40 PM, [EMAIL PROTECTED] wrote: Dear Folk, I've developed a website with ajax capabilities and bookmarkable supports history, I would like to give a specefic Meta tag to each page ... what is the solution ? there is two thing in my mind 1- upgrade the meta tag with

[jQuery] [validate]

2008-09-06 Thread [EMAIL PROTECTED]
Hello All! First off, the jQuery Validator plugin is great! All the functionality you could want in a form validation module. But, I have a small problem with select boxes and the 'required' attributes. I have this select form: label for='eventvenue'City:/labelselect name=eventvenue

[jQuery] Re: Question about :contains filter

2008-09-06 Thread nabrown78
Thanks Ca-Phun Ung, I tried your suggestion, as you're quite right the apostrophe I was using before was the wrong one. But no luck! I tried this: $(li:contains(ladies’ short-sleeve tee)).addClass(selected); If I change the source to just ladies' short-sleeve tee and

[jQuery] A little help please....

2008-09-06 Thread Schalk Neethling
Hi there, I had my first experience with jQuery today and I am experiencing a little hick-up. When you go to www.satechevents.co.za you will find two links under the site logo. When you click on either of these I use the slideToggle method to hide and show the relevant content. Everything

[jQuery] Re: Prevent IE Cross Page Leak

2008-09-06 Thread Rene Veerman
the jquery dom manipulation routines are not to be over-used. instead of zillions of calls to jquery, you should prepare a html statement as a string; var html = ''; html += 'div id=something'; html += 'somethingElse'; html += '/div'; to prevent IE mem leaks, i read to do this: var div =

[jQuery] Image enable or disable

2008-09-06 Thread [EMAIL PROTECTED]
hi, i need ur help. if anyone of u know how to indicate if the browser are enabled to show the image or not. as well as if the browser are enable showing images from type png. i need to do it with javascript or with php if it possible. im waitting for ur help. thanks a lot :) best wishes,

[jQuery] Re: Random behavior of Safari 3 with setInterval()

2008-09-06 Thread ferdjuan
ch2450: I'm viewing the page in Safari 3.1.2 and before I closed the window I reached over 100 reloads. The file displayPosts.php is being loaded over and over, stacking on top of others and filling up memory. I've had problems with the setInterval() function myself doing some animations, and

[jQuery] Re: Finding next/prev node

2008-09-06 Thread Rene Veerman
any DOM element has a property called nextSibling, which points to the very next DOM element, text/html/whatever. var ns = $('#search')[0].nextSibling; var ns = document.getElementById ('search').nextSibling; On Tue, Sep 2, 2008 at 4:43 PM, Finding_Zion [EMAIL PROTECTED]wrote: I need to have

[jQuery] Re: selectors

2008-09-06 Thread seo++
that worked! thanks again! On Sep 5, 10:53 am, Michael Geary [EMAIL PROTECTED] wrote: if I need the Dom node and jQuery object on the same function should I give each different variables or is there a workaround ? Given a jQuery object, you can always get directly to its DOM node(s) with

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-06 Thread Rene Veerman
if the weather widget creates a javascript object in the js namespace, you can test for that when the page has loaded. you can even try to re-initialize the weather widget if it fails the first time (but that would take some doing). you'd need to include the weather widget in the head of your

[jQuery] Re: multiple getJSON calls appear to wait for first response to run any callbacks in FF?

2008-09-06 Thread Rene Veerman
don't wait for any response, just poll an array of 'open' responses and handle whichever are ready? On Thu, Sep 4, 2008 at 3:13 PM, Josh Rosenthal [EMAIL PROTECTED] wrote: Hey all, I'm building a google map based application which allows users to query a number of different json returning

[jQuery] Re: How do I access the function handlers of an event.

2008-09-06 Thread Rene Veerman
$('#myid')[0].onclick to call: $('#myid')[0].onclick() DOM element property, not jQuery method. (again!) ;) On Fri, Sep 5, 2008 at 8:36 AM, Drew LeSueur [EMAIL PROTECTED] wrote: $('#myid').click() will trigger the click event; and $('myid').click(function(){alert('clicked');}); will

[jQuery] Re: How to do something using JQuery

2008-09-06 Thread Rene Veerman
try this; [number] is either the SQL row ID of the name (good), or an arbitrary index (less good). 1) each checkbox gets a html id 'name_[number]_cb' 2) each name gets a html id 'name_[number]_label' 3) each circle gets a html id 'name_[number]_button' 4) each circle gets a html

[jQuery] Re: using blockui, unblock when clicking the ui

2008-09-06 Thread nsanden
Not sure i explained it well MorningZ but in any case I was able to finally get it but I had to hack blockui.js :( If anyone can help me with a way that doesnt require hacking blockui I would be very appreciative... Anyway, here was the solution: $(document).ready(function(){

[jQuery] Re: I must be missing something simple...

2008-09-06 Thread Rene Veerman
http://www.learningjquery.com/2006/09/introducing-document-ready On Fri, Sep 5, 2008 at 4:29 PM, Jim Buzbee [EMAIL PROTECTED] wrote: I've got some jQuery code that seems to work fine in Safari and Firefox both under OSX and Windows. But I've been beating my head against the wall trying to

[jQuery] WYSIWYG input for Jeditable

2008-09-06 Thread Mika Tuupola
This has been sitting in my SVN for a while. Now I had time to fix last issues with FireFox. WYSIWYG input type for Jeditable. It uses Juan M Martínez's jWYSIWYG plugin. Demo, download and instructions: http://www.appelsiini.net/projects/jeditable/wysiwyg/wysiwyg.html

[jQuery] Re: I must be missing something simple...

2008-09-06 Thread John Resig
He's using Document Ready - that's not the issue. To quote Jake from another thread: See this http://dev.jquery.com/ticket/3143. Long story short, jQuery only supports $(html) or $(xmlObject). --John On Sat, Sep 6, 2008 at 7:43 AM, Rene Veerman [EMAIL PROTECTED] wrote:

[jQuery] Re: Using AJAX for computation (JS too slow)

2008-09-06 Thread timothytoe
I went the other way, from computations on the server to computations on the client. Here's why: if you have a large number of players, your server costs will become a real problem. But the number of clients available to do calculations expands with the number of players, and client CPU time

[jQuery] Re: superfish - item height question

2008-09-06 Thread snlsn
Joel; Thanks so much for taking the time to reply. I have no problems with setting that element's height in ems, I just couldn't find where in the superfish css file that height was established. I saw a line height being set and several widths and lots of offsets, but never found a height and I

[jQuery] Re: A little help please....

2008-09-06 Thread Schalk Neethling
This just got a little more interesting. In IE 6 and 7 the content jumps down, in IE 8 and FF it jumps up and in Opera 9.5 it is perfect, hmmm Any thoughts? Thanks, Schalk Schalk Neethling wrote: Hi there, I had my first experience with jQuery today and I am experiencing a little

[jQuery] Re: Scrolling: FF3 vs IE7

2008-09-06 Thread Orkan
Note: this is for vertical scrollbar if($.browser.msie this.scrollWidth this.offsetWidth) { $(this).css({padding-bottom: 1.5em, overflow-y: hidden}); } On Sep 5, 8:20 pm, p.mohanasundaram [EMAIL PROTECTED] wrote: Any Solution?? On Jul 13, 10:00 am, NA [EMAIL PROTECTED] wrote:

[jQuery] Re: [validate] check box array submit using remote method

2008-09-06 Thread Jörn Zaefferer
The remote method doesn't support input groups. You could file a ticket for this (http://dev.jquery.com/newticket) or try to create your own remote-method, starting with the existing one. Or try to redesign the form, removing the need for remote validation of thosre checkboxes. Jörn On Fri, Sep

[jQuery] Re: very simple addClass question for Accordion

2008-09-06 Thread Jörn Zaefferer
The jQuery UI accordion adds a selected-class for you. All left for you if to define the styles in your stylesheet. Maybe give that a try? http://ui.jquery.com/ Jörn On Sat, Sep 6, 2008 at 8:14 AM, sutra [EMAIL PROTECTED] wrote: Hi, I am doing an Accordion using the screencast tutorial by

[jQuery] Re: [validate]

2008-09-06 Thread Jörn Zaefferer
What is that inline onchange-code supposed to do? That looks like it could conflict with the validation code. Otherwise I can see anything wrong in the code - could you post a testpage? Jörn On Sat, Sep 6, 2008 at 5:24 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello All! First off, the

[jQuery] seeking thoughts on jquery and flickr integration

2008-09-06 Thread Marc Esher
Greetings all, I see there are several plugins out there for integrating with flickr. I'm looking to set up a small demo of this functionality, and before I play with the various plugins I'm wondering: for those of you who've tried them, which do you like and why? Also, how reliable is the

[jQuery] Re: using blockui, unblock when clicking the ui

2008-09-06 Thread Mike Alsup
Anyway, here was the solution: $(document).ready(function(){     $(#login_link).click(function(){                 $.blockUI({ message: $('#login_form') });                 $('div.blockDim').click($.unblockUI).attr({                         title: 'Click to Close'                 });      

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-06 Thread bcbounders
Rene, Thanks so much for posting. I got the site up, using the iBegin weather widget on it's own. If it helps, here's a link: http://tinyurl.com/5n8mco I'll take a stab at doing what you suggest... wish me luck! :D But... expect to hear more questions from me soon. - John On Sep 6, 3:50 

[jQuery] get the tutorials offline

2008-09-06 Thread Mihamina Rakotomandimby
Hi, I have a very slow internet connection and more or less 10 people who will have to browse the jquery tutorials. I would like to have them locally so that people will have the ability to quickly browse them. Is my only solution using a mirroring tool such as wget and so on?

[jQuery] fastfind menu question

2008-09-06 Thread roelof
Hello, For mij website i like to use this script. But i can't find how to implement this. Can someone tell me that, Roelof

[jQuery] Re: Browser Object

2008-09-06 Thread [EMAIL PROTECTED]
pls help me. thanks On 5 Sep., 19:45, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, i hope u can help me. i need to indicate with javascript or php, which objects in the browser IE, Mozilla etc are deactivate. example: Popups Blocked, please activate the popups! the object what i need to

[jQuery] Re: get the tutorials offline

2008-09-06 Thread Alexandre Plennevaux
how about printing them on paper ? Alexandre Plennevaux LAb[au] http://www.lab-au.com On Sat, Sep 6, 2008 at 7:30 PM, Mihamina Rakotomandimby [EMAIL PROTECTED] wrote: Hi, I have a very slow internet connection and more or less 10 people who will have to browse the jquery tutorials. I

[jQuery] Using jQuery for a DIV which is created on the fly.

2008-09-06 Thread lukas
How can I simply use jQuery commands to i.e. toggle a DIV which is created on the fly? For some strange reason livequery doesn't work --- jQuery(.abc).livequery is not a function... Thanks for any help!

[jQuery] Re: Question about :contains filter

2008-09-06 Thread nabrown78
Well, this proved an intractable problem - something relating to encoding that was over my head. I found a work-around though, using filter to find the list items containing ladies and short-sleeve thus leaving out the darn apostrophe altogether:

[jQuery] Re: Question about :contains filter

2008-09-06 Thread Ca-Phun Ung
nabrown78 wrote: Thanks Ca-Phun Ung, I tried your suggestion, as you're quite right the apostrophe I was using before was the wrong one. But no luck! I tried this: $(li:contains(ladies’ short-sleeve tee)).addClass(selected); You need to wrap the text string within

[jQuery] Re: .ajax POST question, script stops.

2008-09-06 Thread Ca-Phun Ung
[EMAIL PROTECTED] wrote: http://hertzelle.com/pixel/ is where the demo is currently running. Before you click you will see what is happening to the grid the color is not returning to it's previous state. OK so I was right - you do have a double equal sign in your code! Change:

[jQuery] Re: get the tutorials offline

2008-09-06 Thread JFRanger
better, buy the books, it will the best 25$ invested in your year. sorry for not deleting the original text, I'm with my iPhone and can't select text for deleting! On 6 sep, 15:21, Alexandre Plennevaux [EMAIL PROTECTED] wrote: how about printing them on paper ? Alexandre Plennevaux LAb[au]

[jQuery] Re: Jquery Problem in IE 6

2008-09-06 Thread µseless
tube un problema similar con el .html(), cuando metia codigo javascript dentro del contenido me tiraba errores. Estaba usando la version 1.2.3, la version 1.2.6 no la podia usar porque me traia conflictos que no pude solucionar con Prototype. Finalmente termine debugeando la version 1.2.3 de

[jQuery] Re: Using jQuery for a DIV which is created on the fly.

2008-09-06 Thread etnas
Ok, when you created an element, you must attach the events AFTER the creation. Then, Jquery works fine: For example: Is not correct the following: $(document).ready(function(){ $('.new_div').click(function(){ alert ('hello); }); $('#test').click(function(){

[jQuery] Validate Input of type File

2008-09-06 Thread shapper
Hello, Is it possible to validate a input of type File? I mean that I would like to test if the user checked a file ... nothing else. Thanks, Miguel

[jQuery] Re: get the tutorials offline

2008-09-06 Thread kara swisher
sarah palin http://www.gpirate.com/search?q=sarah+palin On Sat, Sep 6, 2008 at 12:48 PM, JFRanger [EMAIL PROTECTED] wrote: better, buy the books, it will the best 25$ invested in your year. sorry for not deleting the original text, I'm with my iPhone and can't select text for deleting!

[jQuery] Re: Jquery Problem in IE 6

2008-09-06 Thread kara swisher
sarah palin http://www.gpirate.com/search?q=sarah+palin 2008/9/6 µseless [EMAIL PROTECTED] tube un problema similar con el .html(), cuando metia codigo javascript dentro del contenido me tiraba errores. Estaba usando la version 1.2.3, la version 1.2.6 no la podia usar porque me traia

[jQuery] Everyone knows how to manipulate a SELECT with jQuery??

2008-09-06 Thread etnas
Hi! Everyone knows how to manipulate the OPTIONS of a SELECT with jQuery?? I have, for example, this SELECT: select id=test option value=1Option 1/option option value=2Option 2/option option value=3Option 3/option /select And I have 2 buttons on the document: input type=button name=pre

[jQuery] Re: Question about :contains filter

2008-09-06 Thread kara swisher
sarah palin http://www.gpirate.com/search?q=sarah+palin On Sat, Sep 6, 2008 at 11:32 AM, Ca-Phun Ung [EMAIL PROTECTED] wrote: nabrown78 wrote: Thanks Ca-Phun Ung, I tried your suggestion, as you're quite right the apostrophe I was using before was the wrong one. But no luck! I tried

[jQuery] Re: Validate Input of type File

2008-09-06 Thread kara swisher
Jerry Seinfeld Takes a Stab at Scientology http://gpirate.com/search?q=tom+cruise On Sat, Sep 6, 2008 at 2:39 PM, shapper [EMAIL PROTECTED] wrote: Hello, Is it possible to validate a input of type File? I mean that I would like to test if the user checked a file ... nothing else.

[jQuery] Re: Everyone knows how to manipulate a SELECT with jQuery??

2008-09-06 Thread MorningZ
Sometimes simple javascript is the way (other than wiring up the events anyways) Quick code (and tested) here http://paste.pocoo.org/show/84601/ i *think* that's what you were after

[jQuery] Re: get the tutorials offline

2008-09-06 Thread Mihamina Rakotomandimby
JFRanger wrote: better, buy the books, it will the best 25$ invested in your year. If we were in France or any developped country, it would be OK. But here, in Madagascar, it's both very hard to get some USD, buy on Internet or simply have the book in any book store... Our country uses to live

[jQuery] .ajax POST Request - Very Slow, Performance / Syntax Check

2008-09-06 Thread [EMAIL PROTECTED]
Hello, This is week two of learning javascript / jQuery so please forgive me if you find simple mistakes ;) ++ You will notice below my functions behind with \$. This is running in a perl script, and perl uses $ as variable deleration, so it needs to be escaped first. (No big deal) Anyway. I

[jQuery] Re: very simple addClass question for Accordion

2008-09-06 Thread sutra
On Sep 6, 9:07 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: The jQuery UI accordion adds a selected-class for you. All left for you if to define the styles in your stylesheet. Maybe give that a try? http://ui.jquery.com/ Jörn Jörn, thanks for the suggestion. I did try that before

[jQuery] Re: scrollTo anchor or class in div

2008-09-06 Thread pedalpete
Thanks Karl, I didn't realize I shouldn't start an id with numeric characters, I've been doing it for a long time without issue. I've tried the changes you recommended, but still no scrolling. I added an 'a' to the beginning of the id, and now my code is [code] function

[jQuery] Re: scrollTo anchor or class in div

2008-09-06 Thread pedalpete
I've also tried using a class instead of id, but no joy :( On Sep 6, 3:59 pm, pedalpete [EMAIL PROTECTED] wrote: Thanks Karl, I didn't realize I shouldn't start an id with numeric characters, I've been doing it for a long time without issue. I've tried the changes you recommended, but still

[jQuery] Re: .ajax POST question, script stops.

2008-09-06 Thread [EMAIL PROTECTED]
Whoa just looking that and all the documentation makes it look way over my head for a newbie ;). If I did this, would binding with livequery not be needed anymore? As some of the docs ive read, they say things like using Event Delegation will make it where you no longer need to bind those

[jQuery] Re: Everyone knows how to manipulate a SELECT with jQuery??

2008-09-06 Thread Lukas Polak
you don't need to use jQuery. I've just been solving problem about how can I get value of SELECT by jQuery and I've realized that there is another, easier path. Just use simple JS: function getID() { return document.getElementById('test').selectedIndex; // this command find out index of

[jQuery] Re: using blockui, unblock when clicking the ui

2008-09-06 Thread nsanden
Mike, I had tried that originally (i saw you posted that in an earlier thread) but the problem is it also unblocks the UI if I click anywhere in the login_form area. I only want to unblock it if you click outside the login form (in the grayed out area). I assumed the reason was due to giving all

[jQuery] Re: using blockui, unblock when clicking the ui

2008-09-06 Thread Mike Alsup
Mike, I had tried that originally (i saw you posted that in an earlier thread) but the problem is it also unblocks the UI if I click anywhere in the login_form area. I only want to unblock it if you click outside the login form (in the grayed out area). I assumed the reason was due to

[jQuery] MaskedInput

2008-09-06 Thread shapper
Hello, I am applying a masked input to an input as follows: jQuery(function($) { $(#UpdatedAt).mask(-99-99 99:99:99); }); How can I apply the same mask to various inputs without needing to rewrite the code? I tried the following but it did not work: // Form mask

[jQuery] Re: A little help please....

2008-09-06 Thread Chad Pry
is it the overflow?? On Sep 6, 11:00 am, Schalk Neethling [EMAIL PROTECTED] wrote: This just got a little more interesting. In IE 6 and 7 the content jumps down, in IE 8 and FF it jumps up and in Opera 9.5 it is perfect, hmmm Any thoughts? Thanks, Schalk Schalk Neethling wrote: Hi

[jQuery] Re: A little help please....

2008-09-06 Thread Chad Pry
maybe tinker with the css #about, #contact { clear:both; height:auto; overflow:hidden; } i think it has to do with the effect using overflow hidden in the animation. On Sep 6, 11:00 am, Schalk Neethling [EMAIL PROTECTED] wrote: This just got a little more interesting. In IE 6 and 7 the

[jQuery] Re: Image enable or disable

2008-09-06 Thread spicyj
You'll likely find better help if you use proper grammar. I'm a bit confused as to what you're looking for. Possibly you want something like this? http://jquery.khurshid.com/ifixpng.php ~spicyj

[jQuery] Re: A little help please....

2008-09-06 Thread Michael Geary
Any time you get a jump like that at the beginning or end of an animation, a likely culprit is margin or padding on one of the elements you're animating. In this case, at least in FF3, the browser default margin on your H2 elements seems to be causing it. I found that a bit surprising - usually

[jQuery] Re: scrollTo anchor or class in div

2008-09-06 Thread Ariel Flesler
That function is meant to start a scrolling animation ? LocalScroll is meant to be called to prepare the field, that is, bound events that will eventually trigger scrolling. ScrollTo is the one to call for an instant scroll. You either call LocalScroll at start, or ScrollTo manually if you want

[jQuery] Re: scrollTo anchor or class in div

2008-09-06 Thread pedalpete
Thanks Ariel, I guess I should be using scrollTo rather than LocalScroll. Unfortunately I won't have a demo up for a few days. I started to wonder if part of the problem was that the scrollable list is returned via ajax, so I have tried using livequery, but still no scrolling. Here's the code

[jQuery] Re: WYSIWYG input for Jeditable

2008-09-06 Thread C.Everson
On Sat, 6 Sep 2008 16:38:55 +0300, Mika Tuupola wrote: http://www.appelsiini.net/projects/jeditable/wysiwyg/wysiwyg.html Hi Mike, Selecting text and clicking the H1-3 does not work for me in IE7. FF seems OK. Also FYI - where it says Weblog|Projects seems pushed down the page (half off the

[jQuery] JScrollPane not working in some pages

2008-09-06 Thread csplrj
I have used JScrollPane from www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html I have used JScrollPane in this link(http://7thsense.co.in/dbs/ services.html) but somehow its not working though its working on other pages like http://7thsense.co.in/dbs/abt--milestone.html Thanks in

[jQuery] JSON, PHP and JQuery

2008-09-06 Thread aivsdeveloper
Hello, I would like some my frustration gone. I would like to know the following: so when you json_encode with php, how do you get it from that page onto the $.getJSON I know that $_GET will retrieve information from the URL and if its ajax no information gets put into the URL but do I need to

[jQuery] Re: get the tutorials offline

2008-09-06 Thread Karl Swedberg
Do you need a reference or tutorials? Have you tried some of the other sites where there are tutorials? http://www.learningjquery.com/ http://jqueryfordesigners.com/ http://jqueryminute.com/blog/ Also, contact me off list and I might be able to gather some comprehensive resources for you.

WOW ! FINALLY, A REAL HOME BUSINESS -- A REAL HOME INCOME

2008-09-06 Thread Paulo
HTML clipboard *Hello, * * Short cut to success: http://www.website.ws/phpbw * *My name is Paulo and I've got to tell you about the HOTTEST new home business opportunity that is blazing across the net like wildfire. EVERYONE is joining this one... and for good reason! * *Every single

Re: JAMINAN PASSIVE INCOME ADA DI SINI

2008-09-06 Thread join sukses
Pada tanggal 24/08/08, join sukses [EMAIL PROTECTED] menulis: SUDAH BANYAK ORANG (RIBUAN MEMBER) MEMBUKTIKAN HAL INI DI SINI. JANGAN HANYA JADI PENONTON. TAPI JADILAH SAKSI. JADILAH BUKTI !! HANYA DENGAN MENJADI ANGGOTA (UPGRADE MEMBER), MINIMAL 140 RIBU RUPIAH SAJA, ANDA AKAN MENDAPATKAN