[jQuery] Re: TableSorter + Validate problem

2008-12-05 Thread jsrobinson
Amazing, so simple, and it works! Thank you!

[jQuery] Re: Hide a div on blur

2008-12-05 Thread Echilon
That sounds like it could work. Would you happen to have an example? On Dec 6, 1:10 am, ricardobeat <[EMAIL PROTECTED]> wrote: > The most common way is to apply a 'layer' DIV that covers the whole > screen, right behind the div you're showing. > > - ricardo > > On Dec 5, 3:21 pm, Echilon <[EMAIL

[jQuery] Re: click not triggering on safari (mac), chrome (windows)?

2008-12-05 Thread Karl Swedberg
Hi Dave, It could be the return(false). Try removing that line and see what happens. You already have the e.preventDefault() in there anyway. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 5, 2008, at 6:47 PM, dave wrote: Hi jQueriers, Bumped int

[jQuery] Webdeveloper to WebDeveloper

2008-12-05 Thread Pedram
Dear folk , If you're interested on web development Articles which is updated and has lots of new information.(Web developer to web developer) I have just started a Blog which contains (jQuery ,Css,html,Php,Mysql,json,Ajax) take a look at it http://www.pedramdev.com , this Blog gets the best

[jQuery] Re: Nokia 95 AJAX problem

2008-12-05 Thread Alex Hempton-Smith
I have an iPhone 3G so I'd better chip-in here :P The iPhone has "iPhone Safari" installed, which was forked somewhere in-between Safari 2 and Safari 3 - meaning you have more CSS support that 2, but less than 3. The great Facebook web-app for the iPhone can be visited manually at [ http://iphone.

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Alex Hempton-Smith
Thanks for your help and patience Richard!I've made those changes and it all works and looks a lot cleaner now. Thanks again, Alex On Sat, Dec 6, 2008 at 1:44 AM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > I prefer $(this).data(...) to $.data(this, ... Other than that, it looks > good. > > Ok

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Richard D. Worth
I prefer $(this).data(...) to $.data(this, ... Other than that, it looks good. Ok, one minor thing. I would change: $(this).parent().append("" + title + ""); $("#places ul li span").fadeIn(); to (untested): $("" + title + "").appendTo($(this).parent()).fadeIn(); - Richard On Fri, Dec 5, 2008

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Alex Hempton-Smith
Obviously that code now has the presentational stuff for the tooltip I create and destroy. Comments on that code would be great :) This is my first go with javascript at all so... -- Alex On Sat, Dec 6, 2008 at 1:31 AM, Alex Hempton-Smith < [EMAIL PROTECTED]> wrote: > Ah I was just about to p

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Alex Hempton-Smith
Ah I was just about to post about reading up on .data, here's my current code which works, will look through yours now to see if you do it better! $("#places ul li a").hover(function() { var title = $(this).attr("title"); jQuery.data(this, "titleText", title); $(this).removeAttr("title") $(this).p

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Richard D. Worth
On Fri, Dec 5, 2008 at 8:22 PM, Alex Hempton-Smith < [EMAIL PROTECTED]> wrote: > I'm using this code, and the "title" variable is a local variable in the > hover-over function, and not able to be accessed from the next function - > therefore my tooltip has no content the next time I hover over: >

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Alex Hempton-Smith
I'm using this code, and the "title" variable is a local variable in the hover-over function, and not able to be accessed from the next function - therefore my tooltip has no content the next time I hover over: $("#places ul li a").hover(function() { var title = $(this).attr("title"); $(this).remov

[jQuery] Re: superfish and other jquery scripts conflict in IE 7

2008-12-05 Thread Joel Birch
Hello, You have a trailing comma after 'dropShadows: true'. This may well be causing the problem in IE. Joel Birch

[jQuery] Re: Hide a div on blur

2008-12-05 Thread ricardobeat
The most common way is to apply a 'layer' DIV that covers the whole screen, right behind the div you're showing. - ricardo On Dec 5, 3:21 pm, Echilon <[EMAIL PROTECTED]> wrote: > I have a div which is shown when a AJAX callback is executed, but I > can't get it to hide again. I'm using some of t

[jQuery] Trouble with autocomplete and jquery

2008-12-05 Thread eyao
I am having a little trouble with an autocomplete feature and jquery. I'm using the autocomplete plugin and what happens is if the user types too fast, the list that is generated pops up too slow and occasionally the user misses the fact that its an autocomplete field. Is there a way to make the l

[jQuery] click not triggering on safari (mac), chrome (windows)?

2008-12-05 Thread dave
Hi jQueriers, Bumped into an oddity on Safari and Chrome. I have a HTML page and I want to intercept all links and feed them through an ajax request instead. So I first do this $("a").bind("click",handleAjaxifiedLink); which routes clicks to function handleAjaxifiedLink(e) {

[jQuery] superfish and other jquery scripts conflict in IE 7

2008-12-05 Thread shenny
Hi, I'm using superfish for this website i'm working on while using other scripts that are all under jquery. Basically I have 3 sets of navigation going on. 1. main navigation using superfish 2.sidebar using spritefade 3.three huge panels that are links and do a simple fade when hovered. I've put

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Jörn Zaefferer
Store the title in a variable, remove it from the element, and restore it on mouseout. Jörn On Sat, Dec 6, 2008 at 1:34 AM, Alex Hempton-Smith <[EMAIL PROTECTED]> wrote: > Hi all, > I'm using the "title" attribute to create my own custom tooltip, very simple > so it doesn't really need a plugin.

[jQuery] Re: Hiding tooltips

2008-12-05 Thread Charlie Griefer
On Fri, Dec 5, 2008 at 4:34 PM, Alex Hempton-Smith < [EMAIL PROTECTED]> wrote: > Hi all, > I'm using the "title" attribute to create my own custom tooltip, very > simple so it doesn't really need a plugin. > > Everything works fine, except I would like to hide the default tooltip > (yellow on Wind

[jQuery] Hiding tooltips

2008-12-05 Thread Alex Hempton-Smith
Hi all, I'm using the "title" attribute to create my own custom tooltip, very simple so it doesn't really need a plugin. Everything works fine, except I would like to hide the default tooltip (yellow on Windows). How would I go about this? How do the tooltip plugins do it? Many thanks, Alex

[jQuery] sortable issue

2008-12-05 Thread Bhavin
Hi, I am trying to find out element which are dragged & dropped on the list in following method: $("#example").sortable({ //if i move "1" at second position then here i want array of ids 2,1 sequence. ?? // I tried selector but it gives me all the elements. ie. 2,1,3. });

[jQuery] Re: Help creating a special menu

2008-12-05 Thread ivanisevic82
Sorry for the double post... I explain better what i want to do: Did you see the menu in the tutorial I linked in the first post? I'd like to have the SAME effect, but I want a fade trasition when the text became form normal to unfocused. ivanisevic82 wrote: > > > Hi! > Sorry for my englis

[jQuery] Re: Help creating a special menu

2008-12-05 Thread ivanisevic82
Sorry for the double post... I explain better what i want to do: Did you see the menu in the tutorial I linked in the first post? I'd like to have the SAME effect, but I want a fade trasition when the text became form normal to unfocused. ivanisevic82 wrote: > > > Hi! > Sorry for my englis

[jQuery] Re: Using "window.location.hash" for URLs without plugin

2008-12-05 Thread Alex Hempton-Smith
Thanks, I ended up using a switch: var page = location.hash; switch(page) { case "#networks": showPlaces(); break; case "#about": showAbout(); break; case "#contact": showContact(); break; default: showPlaces(); } Works great for me. Thanks again, Alex -- Alex On Fri, Dec 5, 2008 at 5:57 PM, A

[jQuery] Re: Help creating a special menu

2008-12-05 Thread ivanisevic82
Thank you for your support! I don't know if I understand all... I tried to change the css part I posted in the first post with this, but I don't think is right becouse it doesn't work... #main_nav { list-style: none; margin: 0; padding: 0; } #main_nav li { float: left; list-style: none; }

[jQuery] Nokia 95 AJAX problem

2008-12-05 Thread nmiddleweek
Hello guys! I'm doing mobile web work and am using jQuery for AJAX callbacks... It all works nicely on my Vista Box using Safari, IE7, FF3 and Chrome and I've been testing it on my N95 browser which I think is Safari version 2.0 - www.cyscape.com told me :) I've hit a problem with the AJAX cal

[jQuery] [ajax] [Pending - this message has not been accepted by the mailing list yet] Simple AJAX->PHP Request Returns "Access to restricted URI denied"

2008-12-05 Thread Mike
I'm trying to do a pop-up form that onsubmit will send the data to a PHP file that will mail(the_data). The page is located here : http://www.kuhnsjewelers.com/products/blue-topaz-and-peridot-ring Click on "Share this item" and when you click Send, firebug returns the "access to restricted uri d

[jQuery] [blockUI] Permit jQuery-wrapped DOM elements not currently in DOM as messages

2008-12-05 Thread harningt
Currently blockUI makes the assumption that any jQuery element that is passed in is a 'real' DOM element. To fix this, also check that the element also has a parent when performing operations on the parent. Since this list doesn't appear to have file-posting capability... here's an inlined patch

[jQuery] Re: Select "next" until specific element is reached

2008-12-05 Thread Karl Swedberg
one more thing ... those table rows are going to get mangled in FF. You're better off using toggle() without the speed or fadeIn() / fadeOut() --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 5, 2008, at 5:04 PM, Karl Swedberg wrote: Hi Marc, This i

[jQuery] Re: [validate] Rule Selectors

2008-12-05 Thread Jörn Zaefferer
You could use a selector to add classes and attributes that the validation reads to your elements. You can even group rules using addClassRule: http://docs.jquery.com/Plugins/Validation/Validator/addClassRules#namerules Jörn On Fri, Dec 5, 2008 at 8:33 PM, Mihai Danila <[EMAIL PROTECTED]> wrote:

[jQuery] Re: [validate] - Validation by regular expression

2008-12-05 Thread Jörn Zaefferer
You can safely remove the first modification, thats not necessary. Its used for required only to move the method to the front (which is actually a bad workaround). Anyway: I've commented on regex-methods here: http://docs.jquery.com/Plugins/Validation/Validator/addMethod#namemethodmessage Please

[jQuery] Re: Select "next" until specific element is reached

2008-12-05 Thread Karl Swedberg
Hi Marc, This is all untested, but you could try using John Resig's nextUntil() plugin [1] : $.fn.nextUntil = function(expr) { var match = []; // We need to figure out which elements to push onto the array this.each(function(){ // Traverse through the sibling nodes for

[jQuery] Re: multiple width kwicks

2008-12-05 Thread Andy Matthews
I'm pretty sure that the whole point is that the kwicks are evenly distributed. You can't have multiple widths. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jesusbet Sent: Friday, December 05, 2008 1:17 PM To: jQuery (English) Subject:

[jQuery] Trouble with event.stopPropagation();

2008-12-05 Thread MOtoroller
This is small function for scroll images in div with scroll mouse: var mouse=function(event, delta) { _imgFrame.unbind("mousewheel", mouse); if (delta > 0) { _imgFrame.find(_child+":last").clone

[jQuery] Select "next" until specific element is reached

2008-12-05 Thread Marc
I have a simple show/hide thing I'm working on, but I can't figure out how to have the script show ALL the hidden rows up to the next heading. Here's how the simplified HTML looks: Heading Text 1 Group Item 1 Group Item 2 Group Item 3 Heading Text 2 Group Item 1 Group Item 2 Group Item 3 The JS

[jQuery] cluetip mouse tracking

2008-12-05 Thread [EMAIL PROTECTED]
Hi, I'm interested in using the cluetip mouse tracking plugin, but I noticed that the feature is "experimental." Does anyone have more info on this? Are there plans to support it fully? In the meantime, am I safe using it in the major browsers?

[jQuery] multiple width kwicks

2008-12-05 Thread jesusbet
Hi. I'm implementing this effect for a project: http://www.jeremymartin.name/projects.php?project=kwicks The problem is that I'm trying to apply the same effect but using different width buttons, I mean, the first button is 88px width, the second 100px, the third 75px and so on... I tryed defin

[jQuery] Re: Optimizing Easiest Tooltip

2008-12-05 Thread Karl Swedberg
Ok, I dropped your table into my page, and it seems to work fine. http://test.learningjquery.com/very-simple-tooltip.html --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 5, 2008, at 11:45 AM, Frank wrote: Also, I just realised that putting "title"s on

[jQuery] Re: Hide a div on blur

2008-12-05 Thread Hector Virgen
You can't "blur" a div. Only elements that can be "focused" can be blurred. AFAIK, that's form input elements (input, select, etc.) You'll have to use another event or listener to make the div disappear. -Hector On Fri, Dec 5, 2008 at 9:21 AM, Echilon <[EMAIL PROTECTED]> wrote: > > I have a di

[jQuery] Re: links going to "top" of page

2008-12-05 Thread rpetras
OK that worked GREAT! I'm using the livequery plugin and it worked on the first shot. Now, I'm having the same issue with forms. I'm bringing in legacy forms to the page and putting them in the div tag. When I hit submit they pop to the top. I tried a few form plugins, but they tend to

[jQuery] Re: problem with $.JSON request

2008-12-05 Thread Michael Geary
The second option - calling another function from the callback - is really the way to go. Otherwise you don't know when the data is ready. By calling the other function from the callback, you can ensure that the data is actually present. -Mike > From: ricardobeat > > just declare the variable

[jQuery] Re: load() works for html, not php

2008-12-05 Thread rodeored
Thanks for the help. That was the immediate problem, but not my original problem which I was having on another site, but you did give me the idea of trying to actually look at the php file(duh) The problem was an internal error caused by incorrect permission. I had set the correct permissions of

[jQuery] [validate] Rule Selectors

2008-12-05 Thread Mihai Danila
Hi, Is it possible to use jQuery selectors to identify the elements to which certain rules should apply? If this feature exists, then I won't have to unnecessarily complicate the component that dynamically creates my form and that features various control types. Thanks, Mihai

[jQuery] Re: How to access href-property

2008-12-05 Thread Karl Swedberg
Yeah, that's what I would say, too. The person who mentioned it said it affects feedburner and google reader. I can neither confirm nor deny that claim, though. cf. http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content#comment-632

[jQuery] Re: Checking to see if a SWF is fully loaded

2008-12-05 Thread Sam Sherlock
I think its better for flash to call an external function when its fully loaded 2008/12/5 Mike Miller <[EMAIL PROTECTED]> > > Hi, > > Need to find a way to use jquery to check whether or not a swf has > been fully loaded before executing a javaScript function. > > M

[jQuery] Expose an event?

2008-12-05 Thread paron
I made a searchbox object that I can add to a GoogleMap. It lets a user draw a box on the map and keeps track of its max and min lat and lon. I'd like to have it raise an "updated" event whenever either of its internal draggable markers fires a "dragend." That way other objects can watch for an "

[jQuery] [validate] - Validation by regular expression

2008-12-05 Thread skidmarek
I've created a useful addition to your class that you may want to include in a future version. Set the value of the regex attribute to a regular expression. If any characters in the input don't match the regex, it returns false. Very handy. Here's the source: -

[jQuery] Re: How to achieve this effect?

2008-12-05 Thread brian
Once you've got a function that can fade in a series of images, slide them across the page, and fade out, just keep track of the last direction and use the opposite for the next one. On Fri, Dec 5, 2008 at 1:53 PM, sabrinax <[EMAIL PROTECTED]> wrote: > > If you go to the Gucci homepage: http://gu

[jQuery] Re: How to access href-property

2008-12-05 Thread brian
I'd say that's a broken feed-reader. On Fri, Dec 5, 2008 at 12:46 PM, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Not sure about that, but one advantage of full URLs is that they work in all > feed readers. I was using "root-relative" URLs on my blog until somebody > complained that these links wo

[jQuery] mcDropDown - problem getting displayed value

2008-12-05 Thread Sean O
Hi, I'm using the (excellent) mcDropDown plugin: http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm ...but can't seem to get the displayed input value, after hours of Googling & hacking. Code - $(function () { mc = $("#modelName").mcDropdown({ 'select': function(){

[jQuery] Re: Help creating a special menu

2008-12-05 Thread brian
You're only passing one value for background-position; there should be a left and top. Looking at the code you posted and the images themselves, it's not clear to me what you want the hovered link to look like. I'm assuming here that you want the hovered link to change to black text, and the othe

[jQuery] How to achieve this effect?

2008-12-05 Thread sabrinax
If you go to the Gucci homepage: http://gucci.com/us/index2.html you will see a brief slideshow where the image fades in, moves horizontally across the screen (say from right to left), then fades out. Easy. But then the next image fades in, switches direction and moves across the screen in the o

[jQuery] Re: Hover Repeats Over and Over...

2008-12-05 Thread Brian Cherne
Hi Ricardo, you're correct. You can now stop any animation. At the time hoverIntent was written a year and a half ago $(foo).stop() wasn't available. I've been meaning to update the hoverIntent plugin/page. It's in my personal animation queue. :) Brian. On Wed, Dec 3, 2008 at 1:03 PM, ricardobeat <

[jQuery] Re: IE problem

2008-12-05 Thread Michael Geary
I see one problem right away: You're getting a "guid is null or not an object" error in your initialization code. Walking up the call stack, it turns out that this comes from the .hover() call at the end of your JavaScript code. The .hover() method takes two function arguments, and it's not being

[jQuery] Checking to see if a SWF is fully loaded

2008-12-05 Thread Mike Miller
Hi, Need to find a way to use jquery to check whether or not a swf has been fully loaded before executing a javaScript function. M

[jQuery] Re: Submit form using ajax

2008-12-05 Thread Mike Alsup
> Please let me know where i am wrong. Move this line: $('#add_prime_show_id').ajaxForm(options); and put it right beneath this line: $('#admin_ajax_new_content_id').html(html); //show the html inside .content div For background info on why: http://docs.jquery.com/Frequently_Asked_Qu

[jQuery] Submit form using ajax

2008-12-05 Thread vicky
Hi, I am loading a form on click of an hyperlink using ajax.after loading i want to submit that form again with ajax.i tried many methods but no one is working.i need to do validation also. i am using this code. $(document).ready(function(){ $('#admin_ajax_new_content_id').load('a

[jQuery] Hide a div on blur

2008-12-05 Thread Echilon
I have a div which is shown when a AJAX callback is executed, but I can't get it to hide again. I'm using some of the code from the autocompleter and the div contains a . The code I have is at http://pastebin.com/m4b7bf13c . I've left out everything but the relevant parts. I thought I understood h

[jQuery] jQuery slidable pananel with mouse over + gMaps + IE = SLOW!

2008-12-05 Thread sosamv
Hi guys, Im creating a informative dashboard using googlemaps,using marker manager and some other stuff, I also have a panel on the left... we can click on each one of the options and it will do something like $(this).next().slideToggle("slow"); and this function is also looking for all of the oth

[jQuery] Hide a div onblur

2008-12-05 Thread Echilon
I have a div which is shown when a AJAX callback is executed, but I can't get it to hide again. I'm using some of the code from the autocompleter and the div contains a . The code I have is at http://pastebin.com/m4b7bf13c . I've left out everything but the relevant parts. I thought I understood h

[jQuery] Re: IE problem

2008-12-05 Thread luke adamis
OK I figured it out. There is nothing wrong with my script. This website is developed in ShopSite. http://shopsite.com/ ShopSite uses templates to build static pages. In order to cross link and to be able to search ShopSite places anchors all over the HTML. For some reason for these anchors i

[jQuery] Re: Using "window.location.hash" for URLs without plugin

2008-12-05 Thread Andy Matthews
location.hash is a property, so you'd just get it's value then compare that. Something like this might work: // get the hash var page = location.hash; // show the correct page $('#' + page).show(); andy matthews _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Beh

[jQuery] Re: How to access href-property

2008-12-05 Thread Andy Matthews
The crawler fully 'understands' both methods, but bear in mind that in addition to rendering the source code, the crawler also treats the rendered code as text. References to domains can provide a modest increase in performance. While I don't know the exact amount, I'm guessing it's not more than

[jQuery] Re: Variable scope: Newbie Question

2008-12-05 Thread Michael Geary
Hi Mat, 1) You're defining towncity like this: var towncity = window.towncity = new Array(); That creates both a local variable named towncity and a window property (global variable) of the same name. Is that what you want? Do you need to use towncity outside this code? If not, I would chan

[jQuery] Re: How to access href-property

2008-12-05 Thread Karl Swedberg
Not sure about that, but one advantage of full URLs is that they work in all feed readers. I was using "root-relative" URLs on my blog until somebody complained that these links wouldn't work for him in his feed reader. --Karl On Dec 5, 2008, at 11:29 AM, Andy Matthews wrote: As an FYI

[jQuery] Using "window.location.hash" for URLs without plugin

2008-12-05 Thread Alex Hempton-Smith
Hi, I'm trying to use URL's such as 'mysite.com/#contact' that will show a certain div. I have my function written and working to show the div, currently being used as "$("#a.contact").click(showContact);" How would I use something like "window.location.hash" to fire off the function "showContact"

[jQuery] Re: How to access href-property

2008-12-05 Thread Michael Geary
Is that really true? A crawler has to convert all relative URLs to their full form in order to get to those pages. So it has the exact same full URL on hand whether the HTML has a full or relative URL. I don't have any hard evidence one way or the other, it just seems surprising that a search eng

[jQuery] Re: Trouble Understanding getJSON call

2008-12-05 Thread brian
You use it like jQuery.getJSON(url, data, callback) function handleIt104(data, status) { // ... } var url = 'http://the.domain.com/getJSON.php'; var data = {what: ever}; $.getJSON(url, data, handleIt104) I don't know what you mean about a

[jQuery] Re: .load preventing links on page from working

2008-12-05 Thread ricardobeat
Nothing in the load() function prevents any clicks or interaction to happen, unless the ajax object is configured to be synchronous. If you provide a test page showing the issue someone might be able to help. cheers, - ricardo On Dec 5, 7:26 am, ykoorb <[EMAIL PROTECTED]> wrote: > Hey everyone,

[jQuery] datepicker and highlight current day

2008-12-05 Thread fabrice.regnier
Hi, I can't find the option of datepicker that could highlight the current day when i open a calendar. Any idea ? thanks in advance, regards, f.

[jQuery] Re: Optimizing Easiest Tooltip

2008-12-05 Thread Frank
Also, I just realised that putting "title"s on TDs is a silly idea, and completely invalid. But I tried it with a direct copy of your script after putting actual links in, but still only get empty tooltips. Here is an example row: Abridged Title - - - - - - - - - - - Y 2 06:01, 05

[jQuery] Re: Select checkbox when click on row

2008-12-05 Thread Chizo
Thanks Karl, it works now, i don´t know what i was doing wrong, but now works fine! now lets keep learning! Thanks for your time! Lucas

[jQuery] Re: problem with $.JSON request

2008-12-05 Thread ricardobeat
just declare the variable outside the callback, in the scope where you need it, for example: $('something').click(function(){ var message; //the var 'message' will be available inside this function, and can be set by any inner function $.getJSON('http://...', function(data){ me

[jQuery] Re: Optimizing Easiest Tooltip

2008-12-05 Thread Karl Swedberg
On Dec 5, 2008, at 11:17 AM, Frank wrote: Here was my attempt at modifying the original script by the way, which gave very, very strange results. :) $(".adminTable").hover(function(e){ Hi Frank, The first problem in your modification to the script is that you stuck with the .ho

[jQuery] Re: Optimizing Easiest Tooltip

2008-12-05 Thread Frank
Simply exchanging "A" for "TD" in your script didn't work (that would have been too easy :), it only pops up empty tooltips. I'll continue to play with it.

[jQuery] Re: How to access href-property

2008-12-05 Thread Andy Matthews
As an FYI, while I personally prefer relative URLs for simplicity and code reuse, full URLs in the HREF attribute provide slightly better SEO due to the replication of the domain name. On Dec 5, 10:23 am, Andy Matthews <[EMAIL PROTECTED]> wrote: > Here's a reference URL by the way: > > http://www

[jQuery] Re: textarea problem

2008-12-05 Thread Eric Martin
So, you want each line of the textarea to become a column for a single record in the database? You should be able to just split the contents by the cr/lf and then building a record accordingly. How will you verify the data though, for example, making sure that each line gets added to the correct

[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures & hotkeys in jQuery

2008-12-05 Thread Isaak Malik
you'll notice* On Fri, Dec 5, 2008 at 5:24 PM, Isaak Malik <[EMAIL PROTECTED]> wrote: > If you read the entire tutorial you'll noticed that he mentions it's just > an interface and he has plans to integrate it with > plusmusica(request for an invitation) > > > On Fri,

[jQuery] Re: :last in IE6

2008-12-05 Thread ricardobeat
Have you tried li.alt.last? :D On Dec 5, 12:59 pm, Liam Potter <[EMAIL PROTECTED]> wrote: > yes I know this, > > defining li.last.alt allows me apply specific styles to the last li. > The li's have zebra striping, and the last is rounded, so i need to swap > out the image if the alt class is appl

[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures & hotkeys in jQuery

2008-12-05 Thread Isaak Malik
If you read the entire tutorial you'll noticed that he mentions it's just an interface and he has plans to integrate it with plusmusica(request for an invitation) On Fri, Dec 5, 2008 at 5:11 PM, Jean <[EMAIL PROTECTED]> wrote: > > 4 me too > > On Fri, Dec 5, 2008 at 7:

[jQuery] Re: textarea problem

2008-12-05 Thread MorningZ
var Entries = $("#TextArea1").val().split(/\n/g); Will give you an array of items broken up by the line breaks in the On Dec 5, 10:32 am, Jesse <[EMAIL PROTECTED]> wrote: > I have an html textarea that is 41 columns wide.  I need to capture > each line and input it into a database( each line

[jQuery] Re: How to access href-property

2008-12-05 Thread Andy Matthews
Here's a reference URL by the way: http://www.hscripts.com/tutorials/javascript/document-object.php On Dec 5, 10:21 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Matthias... > > Attr('href') will give you whatever is contained in the href property. If > you want the "http://otherpage.com"; th

[jQuery] Re: How to access href-property

2008-12-05 Thread Andy Matthews
Matthias... Attr('href') will give you whatever is contained in the href property. If you want the "http://otherpage.com"; then that needs to be contained in the href property. Using the 'domain' property of the document object will give you the first part: