Re: [jQuery] Re: New Forums

2010-01-22 Thread Shawn
and write a tool to integrate/synch a forum (Zoho in particular in this case) and the mailing list (Google Groups in this case). I don't forsee that happening anytime soon. My thoughts. Shawn John Arrowwood wrote: Silly thought: What if the forums were 'published' to the mailing list

Re: [jQuery] New Forums

2010-01-21 Thread Shawn
. I have put the brakes on for this trend and refuse to give my information away to third party sites that have nothing to do with what I'm trying to do. No offense intended to the zoho gang, as I do not know them or their intentions/purposes. But I'll just say no. My thoughts. Shawn Shawn

Re: [jQuery] New Forums

2010-01-16 Thread Shawn
to shift away from Google Groups. I will likely take a look at the forum to see what's what, but doubt it fill my needs. Still, there are other alternatives than a web forum (i.e. mailman). My thoughts. Shawn Matt Quackenbush wrote: Hello, I received an email inviting me to join the new jQuery

Re: [jQuery] Column total

2009-12-28 Thread Shawn
jQuery(function() { var MarketCapTotal = 0; // loop through the table jQuery('#grdWatchlistname tbody tr').each(function() { // replace the dollar signs and commas var MarketCap = (jQuery('td:nth-child(4)', jQuery(this)).html ().replace('$',

Re: [jQuery] Anchor navigation /like facebook

2009-12-25 Thread Shawn
points you in the right direction... :) Shawn malts...@gmail.com wrote: Hi there, I am trying to find some plugin, which can make AJAX request's by parsing ANCHOR value, from URL... For example I have an ajax gallery and I want to make navigation like this www.example.com/gallery.php#photo=1

[jQuery] Re: js function to jQuery

2009-12-24 Thread Shawn
inside the update panel. In theory you may alternately be able to use $ (#element).live(click... but I've never tested it. If you have more questions, email me I don't always have time to check this list. (shawn.so...@gmail.com) Thanks, Shawn On Dec 23, 3:42 pm, Leonardo Balter leonardo.bal

Re: [jQuery] prompt before closing dialog

2009-12-17 Thread Shawn
).close(); } } }); One approach. Haven't tested this any though... :) Shawn Obi1 wrote: Hi, i'm having some trouble because i'm using a dialog witch has a form in it where someone can change info about their hotel. this dialog also has 2 buttons one to close and the other to save

Re: [jQuery] Best Practices or unobtrusive Javascript

2009-11-30 Thread Shawn
about performance, then the rules get bent anyways and creative solutions are found. Such as merging all JS libraries into one file, then gzipped My random thoughts. Shawn Rafał Pocztarski wrote: 2009/11/30 breadwild breadw...@gmail.com: I have seen several examples on jQuery plugin sites

Re: [jQuery] Best Practices or unobtrusive Javascript

2009-11-29 Thread Shawn
adding the elements. Which means I can pre-write that function in a library, with no JS needed in the body area. Clear as mud? :) Shawn breadwild wrote: I have seen several examples on jQuery plugin sites that have the script tag and Javascript within the body and not the head where I thought

[jQuery] show/hide ui.tab?

2009-11-09 Thread Shawn
-hide to the tab, but that didn't work either. I also did a Google search I don't want to add/remove tabs - that is not quite what I'm after. I just need to hide/show the tabs. Any thoughts/suggestions? Shawn

Re: [jQuery] Re: show/hide ui.tab?

2009-11-09 Thread Shawn
Thanks. Your message got me looking in the right direction. Turns out my selector was wrong. Needed #jobtype, not div.jobtype. Once I changed that everything worked as expected. Shawn MorningZ wrote: Show/Hide works perfectly fine in this quick example http://jsbin.com/oyagi/edit

[jQuery] Re: draggable containment

2009-10-28 Thread Shawn
. in which case you can point at a div that holds the item being dragged. Don't know how helpful that is, but hope it is a start... Shawn Mike C wrote: I've spent a good few hours trying to figure this out and I'm stumped. I'm trying to get a huge div that's bigger than the entire window

[jQuery] SPAM Messages in the list

2009-10-28 Thread Shawn
thread/message) that these need to be addressed. My thoughts. Shawn

[jQuery] Re: Your Javascript/Jquery best pratices

2009-10-28 Thread Shawn
When you are working in team environments, a common coding standard is very helpful. What I do is to define the coding standard to be implemented for a project, then do periodic code reviews to make sure the standards are being applied as well as making sure the code actually works and is

[jQuery] Re: ClueTip focus/blur trouble

2009-10-26 Thread Shawn
); }); }); The .live() would have been a nice touch here, but it doesn't support blur events (yet). Thanks for the nudge in the right direction. Shawn Karl Swedberg wrote: Hi Shawn, Here is what I'd probably do: After you call $this.cluetip( ...), unbind the blur event: $this.unbind('blur.cluetip

[jQuery] Re: ClueTip focus/blur trouble

2009-10-25 Thread Shawn
Thanks Karl. I'll look at this more in a bit. but from what I can see I think you have a solution for me.. Shawn Karl Swedberg wrote: Hi Shawn, Here is what I'd probably do: After you call $this.cluetip( ...), unbind the blur event: $this.unbind('blur.cluetip'); Then you can handle

[jQuery] Re: JQuery AJAX

2009-10-24 Thread Shawn
it should be an object, not the letter 'e'...), but that is relatively minor. Hope this helps. Shawn Ryan White wrote: Hey All, So I am having a weird situation when using the $.ajax method. And have a couple questions regarding this. What I am doing is basically just using this AJAX call

[jQuery] Re: JQuery AJAX

2009-10-24 Thread Shawn
btw, if you are trying to track stats, have you looked at Google Analytics or Piwik? http://www.google.com/analytics/ http://piwik.org/ Shawn Ryan White wrote: Hey All, So I am having a weird situation when using the $.ajax method. And have a couple questions regarding this. What I am

[jQuery] ClueTip focus/blur trouble

2009-10-22 Thread Shawn
on how to get this running properly. OR for a plugin that provides similar functionality already. Thanks for any feedback. Shawn

[jQuery] superfish navbar - how do I center the whole bar?

2009-10-20 Thread Shawn
I'm using a navbar with superfish. I simply put my menu list inside a wrapper so the markup looks like this: div class=navbar-wrapper ul class=sf-menu sf-navbar li.../li li.../li li.../li /ul /div now I want to make the navbar-wrapper 100% of width and the navbar to be centered in it, I thought

[jQuery] Re: superfish navbar - how do I center the whole bar?

2009-10-20 Thread Shawn
li.../li li.../li li.../li /ul /div /div Apply the centering tricks to div.centerMe. Disclaimer - I just pulled an all nighter, so I need to freely suggest that my advice at this point may be questionable... :) Shawn rupak mandal wrote: Put the ul inside a div. I think

[jQuery] Re: Json works in firefox but not in ie

2009-10-19 Thread Shawn
Common problem. It was blogged about in Feb last year (http://grover.open2space.com/node/207). Still, I'm glad you found the solution. Shawn Patrik wrote: Problem solved it was an extra , after the last {optionValue: '. $b .', optionDisplay: '. $b .'} in the php file. firefox must have

[jQuery] Re: Ajax populating select box based on radio selected

2009-10-13 Thread Shawn
there is no (known) plugin. Yet the code is simple enough to slap together in less than 5 minutes. HTH. Shawn lionel28 wrote: Hello, Is there a script that allows to get values to populate a select box via ajax when a radio button is clicked? Thank you.

[jQuery] Re: Ajax populating select box based on radio selected

2009-10-13 Thread Shawn
to end the .each() return false; } }); The first approach is preferable, I'd think - less looping involved. But this second approach shows an expanded way to do the same thing, which is sometimes needed when doing something a little more non-simple. HTH Shawn lionel28 wrote: hummm

[jQuery] Re: Treeview - Custom hyperlink click event

2009-10-11 Thread Shawn
event handlers are fired before your event though. Some random thoughts.. Haven't tried any of this. Shawn philsturgeon wrote: I am trying to remove the default behaviour from the A within the Treeview structure. I want the +/- icons to continue to toggle but when a user clicks on the A I

[jQuery] Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Hi there, I'm fumbling through here so I apologize in advance for being such a newby to javascripts and jquery. I spent the entire day yesterday getting jscrollpane to work on a site I've been working on and was SO excited to see that it was working beautifully in firefox this morning after some

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Thanks so much BaBna. I think you're right about it not having anything to do with the javascript itself. I probably should be asking this in a general web design forum except for that I've never had issues with this shifting (at least not nearly to this degree) on sites that haven't included the

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
I forgot to include the link again, just so it's handy if anyone can take a look: http://www.auntiepea.com/ew/OldFarm/index.html

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Update. I figured out which area was causing the issues. Zeroed out the margins on the main content area and used padding to place the content where I wanted it. Worked like a charm. Thanks again BaBna for headin' me in the right direction on this. On Oct 7, 11:04 am, BaBna

[jQuery] Re: keepp getting NaN vlue

2009-09-28 Thread Shawn
hard to troubleshoot. Oh, if the number is not an integer, use parseFloat() instead of parseInt(). (er, sry if this is TOOO basic.. :) ) Shawn Giovanni Battista Lenoci wrote: runrunforest ha scritto: Hi, I'm making a calculator for freight customer It seems I'm on the right path

[jQuery] Re: ultimate submenu(please help me)

2009-09-24 Thread Shawn
Ajaxified, just update the lists as needed. (though you may need to re-apply the superfish command then). Shawn hamed7 wrote: hi i want create ultimate submenu and support multilevel for example like this: -- 1: 1-1 2: 2-1 2-2-1 2-3-1-1 2-3-2-1 2-4-1-1-1 2-5-1-1 3: 3-1-1-1 4

[jQuery] Re: Page goes up when I click the link

2009-09-09 Thread Shawn
be returning to the top of the page. You need to stop the normal handler - which is usually done in jQuery by returning false from and event handler function. HTH Shawn merihsaka...@yahoo.com wrote: Hi all, I am using jQuery BlockUI Plugin (v2). It works success but I have a small problem, when I

[jQuery] Re: Page goes up when I click the link

2009-09-09 Thread Shawn
into native JS methods to stop propagation. Is this inherited code? Or generated by Dreamweaver? Eitherway, the code looks reminiscent of DW to me. Both those functions should probably make better use of jQuery, but methinks that is a separate issue.. :) HTH Shawn nasionalem wrote: Hi thaks

[jQuery] Re: how can I treat a string as JSON?

2009-09-08 Thread Shawn
() anyways. I do use some of these convenience functions, but the moment I need to start worrying about callbacks, or what data I'm passing, $.ajax() makes life clear and simple for me. HTH. Shawn Alex Weber wrote: I use $.getJSON for all my ajax stuff and it works beautifully but there is one

[jQuery] Re: Anything wrong with this ajax syntax?

2009-09-07 Thread Shawn
something like console.log(response); and see what you get. If it is plain text, you will see the text. if it is JSON, you should get an object or array shown (firebug will color code these for you. um.. you ARE using Firebug aren't you? lol ) HTH Shawn Rick Faircloth wrote: Is there something

[jQuery] Re: How to unsubscribe?

2009-09-06 Thread Shawn
be done. HTH. Shawn Asif R Naqvi wrote: Could any please advise how to to unsubscribe from this group?

[jQuery] Re: How to unsubscribe?

2009-09-06 Thread Shawn
*From:* Shawn sgro...@open2space.com *To:* jquery-en@googlegroups.com *Sent:* Sunday, 6 September, 2009 15:17:09 *Subject:* [jQuery] Re: How to unsubscribe? go to http://groups.google.com/group/jquery-en. Sign in with the account you used to sign up (probably

[jQuery] Re: Sloppy Documentation of Ajax Methods

2009-08-09 Thread Shawn
. (Use $.ajax() and jsonp to work around that.) So the getScript() function will follow this limitation as well if it is calling the new script via Ajax. My thoughts. Shawn rickoshay wrote: Here are the descriptions for the Ajax methods: load -- Loads HTML from a remote file ... ajax -- Load

[jQuery] Re: Selector help

2009-07-19 Thread Shawn
(); In this case $(this) says to put the jquery wrapper object around the DOM element represented by this in the current context. The difference is very minor, I know, but I did not see in his description just what this represented... Shawn Charlie wrote: you can't use this in same manner

[jQuery] Re: simple JSON parse problem!!!

2009-07-01 Thread Shawn
... In your code, I'd recommend doing as MorningZ mentioned: var theObject = { key: value}; alert(theObject.key); HTH Shawn theozmanbo wrote: Why won't this work??? Nothing pops up for the alert. script type=text/javascript var theObject = {key: value}; var JSON = eval

[jQuery] Re: getting the value of list box in jquery

2009-07-01 Thread Shawn
mileage may vary. Tweak it as needed. Shawn naz wrote: i m w8ing for your reply On Jul 1, 9:32 am, MorningZ morni...@gmail.com wrote: Got some HTML to show of the select box? if you have select id=right mulitple=multiple option value=1One/option option value=2 selected=selectedTwo

[jQuery] Re: simple JSON parse problem!!!

2009-07-01 Thread Shawn
are within your current understanding of JSON. You're not far off, but not quite there. :) Shawn

[jQuery] Re: Horizontally scroll a table

2009-06-18 Thread Shawn
Not sure if this meets your needs or not: https://www.open2space.com/projects/fixedtable It's a little dated, but does work in some (not all) cases... Shawn michael wrote: Hello all, Is there a plugin somewhere that will allow a table to horizontally scroll within a set width? I could

[jQuery] Re: Safari reader Article Length with jQuery?

2009-05-25 Thread Shawn
these links will lead you in the right direction. Shawn Mat wrote: My idea is to allow my viewers the ability to shorten/lengthen the content of divs containing news articles on my archive page, much like the safari reader does. Would this be possible with jquery, and if yes, cross-browser compatible

[jQuery] Re: Big problem with Jquery

2009-05-25 Thread Shawn
for their environment. There is no one answer to rule them all. My thoughts. Shawn zweb wrote: I really like jquery but I found one big issue with Jquery. There are too many plugins for same task and it is very difficult to find a good plugin that really works. For example, I am looking for lightbox

[jQuery] Re: How to print json data, key and value

2009-05-20 Thread Shawn
something more appropriate) This will work with ANY object (assuming my memory isn't to far gone), but will not go into the tree structure. If a propertie is another object, or array, then it's value would be displayed as [object]. HTH And I hope this is what you were after. Shawn

[jQuery] Re: [Autocomplete] - Doesn't always work

2009-05-19 Thread Shawn
sample code, I'm not sure how much more I can help out... But hope that points you towards the solution somewhat. Shawn MeanStudios wrote: Greetings, I'm currently using this awesome plugin for my web app but I'm having a bit of an annoying bug with it. It sometimes does not pull up any results

[jQuery] Re: Tell me , name of the jquery plugin for my requirement

2009-05-19 Thread Shawn
needs, but might suit your's Hope that helps. Shawn bharani kumar wrote: Hi all , Am looking one plugin must statisfy all my need , below is my need , Can u please tell me , which plugin is suitable for my requirement , * * * Search Box

[jQuery] Re: [Autocomplete] - Doesn't always work

2009-05-19 Thread Shawn
comments as constructive observations... :) Shawn MeanStudios wrote: Shawn, yes, that is the plugin I am talking about. In Jorn's blog post on Autocomplete he said to post here with [Autocomplete] in the subject if having problems. Here's the code I'm using: $(#client_name).autocomplete(/ac

[jQuery] Re: tutorial

2009-05-16 Thread Shawn
View at all. It might take a bit more to learn to start with, but you need to know how to do everything by hand eventually (i.e. no graphical tool to write code)... may as well start now. My thoughts though. Shawn keithcoo wrote: I went through part of the tutorial, and when i got

[jQuery] New Linux.com and jQuery Group

2009-05-13 Thread Shawn
http://linux.com/index.php Linux.com jQuery group: http://linux.com/community/groups/viewgroup/240-jQuery Shawn

[jQuery] Re: json syntax question (ticket vs unticked names)

2009-05-08 Thread Shawn
- I haven't done this since 1.2.x days, so don't know if it's still the case) To avoid these errors, use the standard and do { key : value } especially when passing json via an http request (i.e to/from a server). You'll have fewer problems in the long run. My thoughts. Shawn aldana

[jQuery] Re: json syntax question (ticket vs unticked names)

2009-05-08 Thread Shawn
side, or client side. But if I just need to define an object client side, I don't usually bother. So, I guess the distinction is what your target data type is - string or object. With string, always quote. With object, it's optional. My thoughts. Shawn unwiredbrain wrote: Actually

[jQuery] Re: encode data in AJAX post?

2009-04-30 Thread Shawn
the JSON libraries and let IT build your string for you. It is up to you to decide if you want/need the extra libraries loaded loaded though Hope that helps. Shawn jb007nd wrote: Do i need to encode my data send through AJAX post? Ex. var name = $(input#name).val(); var dataString = 'name

[jQuery] Re: Cycle Plugin - Can't Get Pause To Work

2009-04-23 Thread Shawn
as it should. I don't think you want the pause option here. I think you want to progamatically start/stop the cycling. See the section Manually Pausing a slideshow at http://malsup.com/jquery/cycle/int2.html. HTH. Shawn Nic Hubbard wrote: I am using the cycle plugin, but for some reason I

[jQuery] Re: web site configuration

2009-04-20 Thread Shawn
with many times HTH Shawn rince78 wrote: Hi, at present I give a favour for one of my friends. Unfortunately I'm not really involved in programming web sites. I'm calling a lot of javascripts for a slideshow and some other stuff. for example: script type=text/javascript src=highslide-full.js

[jQuery] Re: value of this after many enclosures!

2009-04-08 Thread Shawn
the difference between a DOM object/element and a jQuery object. They are not the same, though they are often used in a very similar manner. HTH. Shawn

[jQuery] Re: HOWTO - hover card effect

2009-04-07 Thread Shawn
might get a similar type of effect with the ClueTip plugin (http://plugins.learningjquery.com/cluetip/), a little CSS and a little creative positioning. Hope that helps. Shawn Giovanni Battista Lenoci wrote: Jury ha scritto: Hi all, this effect seems to have no common name, let's call

[jQuery] Re: How save is Jquery with JSON

2009-01-27 Thread Shawn Grover
to your page as needed. There may be more options for getting data from remote URLs, but these are what I have commonly seen. The server side approach is probably the easiest and/or better performing option. My thoughts. Shawn Trend-King wrote: ok i understand but how does plugins like

[jQuery] Re: getting to a variable in the parent frame - stumped

2009-01-24 Thread Shawn Grover
. Then only part I'm not sure on is the use of the $() function in your code. I'm not sure if jQuery places the defined function on the global stack or not. If so, then you shouldn't even need the first part Hope that helps. Shawn jay wrote: perhaps you need to do this.module

[jQuery] Re: change image scr of all images in a page

2009-01-20 Thread Shawn Grover
/s.demo/+$(this).attr('src')); }); You have a slight issue with the samples. The first instance of $('img') inside the function() should be $(this). Shawn

[jQuery] Covering multiple elements with a single function, but passing a variable?

2009-01-14 Thread Shawn
Hi. I'm stuck trying to figure out the jQuery way to code this functionality I have in my project. Below is a stripped down example of what I'm trying to do. When I click the Add Item link below any list, I want to just append a new element to the end of that list. What I do now is just use

[jQuery] Re: Odd issues passing JSON to server [resolved]

2008-12-15 Thread Shawn Grover
to be changed to read $data = json_decoe(stripslashes($_GET[p)); At which point it worked as expected. Shawn Shawn Grover wrote: I'm not sure if I have a server side issue or a client side issue. The problem is that I am generating a JSON string in my plugin, and passing it to a php page

[jQuery] Odd issues passing JSON to server

2008-12-13 Thread Shawn Grover
that string is giving me nothing - not even errors. Sooo, I'm stuck not knowing if the json string is invalid, or I'm doing something wrong on PHP. I have a pastie with the code in question at http://pastie.org/338246. Any tips are appreciated. Thanks. Shawn

[jQuery] Re: getBoxObjectFor() is deprecated

2008-11-26 Thread Shawn Grover
I see this occasionally, but on pages that I didn't write, or even use jQuery. This is a FF issue, I believe I could be wrong though... Shawn edzah wrote: Well I am getting the same error and I'm not using the flash plugin. Anyone else get this? Ed **Since I can't reopen this old

[jQuery] Re: How to find the first parent?

2008-11-24 Thread Shawn Grover
$(#myElement).parent(); Shawn Debby wrote: How to find very first parent of perticular element?

[jQuery] Re: get top most parent

2008-11-24 Thread Shawn Grover
$(#header2).children(p.submenu); or $(#header2).find(.submenu); or make use of context: $(.submenu, #header2); - read that as all items with class of .submenu under the #header2 object. The #header2 part can be a selector, DOM element, or jQuery object. HTH Shawn Liam Potter wrote

[jQuery] Re: Instantiating multiple plugin instances on the same page

2008-11-24 Thread Shawn Grover
() { // plugin code goes here }); If you can post your code, we can help more. OR, you can go to the #jquery channel on IRC and use a pastie (www.pastie.org) to get some more interactive help... Hope that helps some. Shawn howardk wrote: Is there a way of instantiating multiple instances

[jQuery] Re: How to create own jQuery plugin?

2008-11-18 Thread Shawn Grover
http://www.learningjquery.com/2007/10/a-plugin-development-pattern This assumes some basic jQuery knowledge, but gives a nice how and why of building a better plugin. (hope this info is still current cuz I use it often) Shawn Debby wrote: Hello, Can anybody expalin how to create own

[jQuery] Modernized Portlets?

2008-11-15 Thread Shawn Grover
on tables would be nice too... If there isn't one, I guess I'll have to update it... A customer wants this sort of functionality Thanks for any tips... Shawn

[jQuery] Re: Modernized Portlets?

2008-11-15 Thread Shawn Grover
are not showing while dragging. I stumbled across the portlets while working on this and was hoping there might be something a little more complete and modern. Guess I'll keep plugging away at this Shawn Karl Swedberg wrote: Hey Shawn, There is a rudimentary one in the jQuery UI demos: http

[jQuery] Re: A real modal window... is it possible?

2008-11-14 Thread Shawn Grover
environment. But that doesn't describe a web page per se My thoughts... Shawn Richard D. Worth wrote: What I mean to say is, a modal isn't about stopping flow of code. It's about restricting interaction to a certain set of elements, until the interaction is complete. So it allows interaction

[jQuery] Re: Animating table rows

2008-11-13 Thread Shawn Grover
Another option is to wrap each of your TDs within the row with a DIV. Then you can do something like $(#myRow div.animateMe).slideUp(); Then the row has no vertical height because it's content is now invisible. Just a thought Shawn Karl Swedberg wrote: Chris, The .fadeIn

[jQuery] Sortable type behavior?

2008-11-12 Thread Shawn Grover
=contentSome content here/div /div Thanks in advance. Shawn

[jQuery] Re: Event Capture Architecture

2008-11-12 Thread Shawn Grover
if possible, then using the event.target element to look at the element throwing the event. Oh, and if you need more data for processing than just the ID, don't forget about the jQuery.data() method HTH Shawn saqib wrote: I am developing an application in which I have to define click

[jQuery] Remove CSS setting (not class)?

2008-11-11 Thread Shawn Grover
on the maximized bit. Perhaps because it's WAY past bed time for me. I've tried $(#myElement).css(height, ); with no luck. I don't want to just say 100%, because some content may only be a line or two, while others may be XXX pages... Thanks for any tips. Shawn

[jQuery] Re: Remove CSS setting (not class)?

2008-11-11 Thread Shawn Grover
Thanks - auto did the trick. I might be back in a bit with questions about animating this, but I'm looking at the animate() method first... Shawn Liam Potter wrote: $(#myElement).css(height, auto); MorningZ wrote: try $(#myElement).css(height, null); On Nov 11, 7:52 am, Shawn

[jQuery] Re: pirobox plugin released

2008-11-11 Thread Shawn Grover
as possible... Of course this is just my opinion, and you are free to do as you wish.. :) Shawn diego wrote: You mean this http://www.pirolab.it/pirobox/js/pirobox.js ?? unreadable? I changed all the original variables and removed all the spaces to get the script more lightweight. Just

[jQuery] Re: Panel Interface for webpage?

2008-11-10 Thread Shawn
Thanks Rene. Didn't find anything promising there though... but great resource! Shawn On Sunday 09 November 2008 21:46:01 Rene Veerman wrote: Shawn wrote: I'm not sure if I've seen a plugin for this, or even a website, but thought I'd ask here before creating custom code We're

[jQuery] Panel Interface for webpage?

2008-11-09 Thread Shawn
- but this covers the core. I'm looking for any tips/suggestions on this... I can build something (ajax calls, iframes, etc... should be pretty straight forward), but would rather not have to, unless really needed. Thanks for any responses. Shawn

[jQuery] Re: [HELP] How do I get attribute's value of selected node ?

2008-11-09 Thread Shawn
theID = $(this).attr(id); // ... do something with the id }); You can get ANY attribute using the .attr() method. HTH Shawn On Sunday 09 November 2008 19:30:45 Pham Anh Tuan wrote: Hi all, I'm stucking in this trouble about 2 hours T___T Because I have to get data from server

[jQuery] Re: How to solve this

2008-11-04 Thread Shawn
Or submit the form from code: $(input[type='submit').click( function () { $(#informUserText).show(); $(form).submit(); $return false; }); On Tuesday 04 November 2008 13:53:51 Mauricio (Maujor) Samy Silva wrote: Do not cancel the default action for the click event with the statement

[jQuery] Re: reading values from HTML tables

2008-10-31 Thread Shawn
think ). Anyways, hope that helps. Shawn On Thursday 30 October 2008 23:29:52 GrootBaas wrote: Hi all, Any help would really be much appreciated. I have a table, how can I read the cell values of the table ... Currently I have ... function test () { var address; var i

[jQuery] Re: reading values from HTML tables

2008-10-31 Thread Shawn
Correction. Console.log works with FireBUG, which is a FireFOX plugin... sighs... I should just go to bed.. :) Shawn On Friday 31 October 2008 00:45:08 Shawn wrote: I *think* the following will get you started: $(#veh_odometer).children(tr).each( function () { //'this' refers

[jQuery] Re: Howto Question

2008-10-31 Thread Shawn
if the mouse moves over the revealed area or the original link. If the timer is allowed to end, then do the usual fade() bit. The length of time for this is up to you... 500 ms, 1 sec, etc... The hoverIntent plugin might help out with this. Some thoughts. Shawn On Friday 31 October 2008 03:57:13

[jQuery] Re: Howto Question

2008-10-30 Thread Shawn
for me right this moment...) But this should get you started. You may be able to use the .toggle() method as well - up to you. Btw, simple fading requires no additional plugins. HTH Shawn On Thursday 30 October 2008 16:37:47 searly wrote: Hi there, sorry if this is the wrong place to post

[jQuery] [autocomplete] Some random questions

2008-10-26 Thread Shawn
a local data set for now. 3. It's been about a year since I last looked at autocomplete. Anything new that I should be aware off? (I was using Jorn's plugin back then as well...) Thanks for any info. Shawn

[jQuery] Re: [autocomplete] Some random questions

2008-10-26 Thread Shawn
per se. However I did notice the .result() is not binding (or perhaps I'm using it wrong... was planning on looking into that today). But, if autocomplete will not be included until 1.7, then I should probably just use your plugin, rather than UI's version. Thanks for the info. Shawn

[jQuery] jQuery.ui modal dialog with themeroller theme?

2008-10-23 Thread Shawn
not understand the CSS well enough to role my own (at the moment..). Thanks. Shawn

[jQuery] Re: (Resolved) jQuery.ui modal dialog with themeroller theme?

2008-10-23 Thread Shawn
out. Shawn. Odd. in my same project, with similar code, The modal dialogs work fine. On Thursday 23 October 2008 22:32:36 Shawn wrote: I'm finding that if I use any of the themes generated by the ui themeroller, I cannot use them with a modal dialog. The form elements cannot receive focus

[jQuery] Re: [TUTORIAL] Create a professional interface for your web applications using jQuery

2008-10-22 Thread Shawn
code in there that handles browser differences. jQuery handles most of this for you. For instance: $(#myObj).height(100); handles the differences between most browsers. Which makes your code even easier to read. Otherwise not a bad start. Keep em coming. :) Shawn On Tuesday 21 October

[jQuery] $(document).ready() vs $(function () {});

2008-10-20 Thread Shawn
I am seeing more and more references to using the $(function() {}); format for the ready method. Is there a compelling reason for this? Or will $(document).ready() perform as well? Or perhaps I'm mis-understanding what the newer format is being used for? Thanks for any tips. Shawn

[jQuery] Re: jquery.ui theme issue (via themeroller)

2008-10-12 Thread Shawn
and the default library based styles. (because Flora works fine with those same styles...) If it helps any, I'm running FF3 on 64bit Kubuntu. Shawn On Sunday 12 October 2008 04:39:36 Shawn wrote: I just downloaded a theme from the jquery.ui themeroller (http://ui.jquery.com/themeroller). When I

[jQuery] jquery.ui theme issue (via themeroller)

2008-10-12 Thread Shawn
if the dialog buttons were aligned to the right. Like real dialogs.. :) (I know... I'm free to change the CSS as needed, but still.. lol) Shawn

[jQuery] Escaping the apostrophe

2008-09-17 Thread Shawn Molloy
false; Whats the best way to handle this scenario? Thanks, --shawn

[jQuery] Re: How to queue up ajax requests?

2008-07-16 Thread Shawn
- NOT try to solve all developers needs in one package. But this is all just opinion. I'll leave those decisions to John Resig and the rest of the core developers... My random thoughts Shawn

[jQuery] Re: How to queue up ajax requests?

2008-07-15 Thread Shawn
cannot clearly define what you are trying to do, then we cannot clearly tell you if it's in core jQuery, or in a plugin.. :) Shawn partner56290674 wrote: what your doing there Shawn is still flooding the server with ajax calls, and displaying them as they come back to the user. What happens

[jQuery] Re: How to queue up ajax requests?

2008-07-15 Thread Shawn
it, in my opinion.. :) There may be a plugin for this sort of thing, but I haven't seen one (yet). Shawn partner56290674 wrote: the flooding the server with calls is a non argument. If you don't want to do that, then you need to redesign your server side code to accept a single request to give

[jQuery] Plugin accessor method?

2008-07-14 Thread Shawn
be changing the storage method) Thanks in advance. Shawn

[jQuery] Re: How to queue up ajax requests?

2008-07-14 Thread Shawn
this is only one approach HTH Shawn partner56290674 wrote: Hi folks, can anyone help me with some links to queuing up ajax requests using jQuery please? I tried using the Ajax Queue plug-in (http:// plugins.jquery.com/project/ajaxqueue) but this wasn't much help (errors). is queuing now

  1   2   3   >