[jQuery] shobhit chaturvedi wants to chat

2010-03-01 Thread shobhit chaturvedi
---

shobhit chaturvedi wants to stay in better touch using some of
Google's coolest new
products.

If you already have Gmail or Google Talk, visit:
http://mail.google.com/mail/b-4b2302e37c-9fd2a24dac-15866bd193bee8f5
You'll need to click this link to be able to chat with shobhit chaturvedi.

To get Gmail - a free email account from Google with over 2,800 megabytes of
storage - and chat with shobhit chaturvedi, visit:
http://mail.google.com/mail/a-4b2302e37c-9fd2a24dac-15866bd193bee8f5

Gmail offers:
- Instant messaging right inside Gmail
- Powerful spam protection
- Built-in search for finding your messages and a helpful way of organizing
  emails into conversations
- No pop-up ads or untargeted banners - just text ads and related information
  that are relevant to the content of your messages

All this, and its yours for free. But wait, there's more! By opening a Gmail
account, you also get access to Google Talk, Google's instant messaging
service:

http://www.google.com/talk/

Google Talk offers:
- Web-based chat that you can use anywhere, without a download
- A contact list that's synchronized with your Gmail account
- Free, high quality PC-to-PC voice calls when you download the Google Talk
  client

We're working hard to add new features and make improvements, so we might also
ask for your comments and suggestions periodically. We appreciate your help in
making our products even better!

Thanks,
The Google Team

To learn more about Gmail and Google Talk, visit:
http://mail.google.com/mail/help/about.html
http://www.google.com/talk/about.html

(If clicking the URLs in this message does not work, copy and paste them into
the address bar of your browser).


[jQuery] Newbie Question: Finding and manipulating an element

2010-03-01 Thread Aaron Johnson
Hello...

I have an unordered list containing nested lists...

ul class=foo
lia title=Announcements1 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
lia title=Announcements2 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
lia title=Announcements3 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
/ul

The top level list has an ID and associated css, I'd like to add a class to
each of the nested ul elements in order to style them differently. I
cannot manually add a class so wondered if I could do it with jQuery.

I'm looking for a result like this:

ul class=foo
lia title=Announcements1 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul class=bar
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
lia title=Announcements2 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul class=bar
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
lia title=Announcements3 href=foo.htmlspan
class=portal-navigation-labelHome/span/a
ul class=bar
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
lia title=Announcements
href=foo.htmlspanAnnouncements/span/a/li
/ul
/li
/ul

Thanks for your help!

Aaron


[jQuery] Re: Using jQuery UI with Google Maps

2010-03-01 Thread Thai Dang Vu
I think I found an answer for this problem. The answer is: do not create a
dialog on the fly (i.e. do not create a div on the fly and then
$(div).dialog()), but create a dialog before initializing the google map.

On Wed, Feb 24, 2010 at 2:41 PM, Thai Dang Vu tdan...@gmail.com wrote:

 Hi,

 I create a jQuery dialog which is above a Google map. If I drag that
 dialog, the whole google map dispappears. Does anybody have any idea of what
 happened?

 Thank you.



[jQuery] Re: Newbie Question: Finding and manipulating an element

2010-03-01 Thread Greg Tarnoff
This will add the class for you. Put it in the document ready function
if you want it on page load or in whatever function you want to call
it from.

$('ul.foo li 'ul).addClass(bar);

On Mar 1, 5:06 am, Aaron Johnson aaron.mw.john...@gmail.com wrote:
 Hello...

 I have an unordered list containing nested lists...

 ul class=foo
     lia title=Announcements1 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
     lia title=Announcements2 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
     lia title=Announcements3 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
 /ul

 The top level list has an ID and associated css, I'd like to add a class to
 each of the nested ul elements in order to style them differently. I
 cannot manually add a class so wondered if I could do it with jQuery.

 I'm looking for a result like this:

 ul class=foo
     lia title=Announcements1 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul class=bar
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
     lia title=Announcements2 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul class=bar
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
     lia title=Announcements3 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul class=bar
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
             lia title=Announcements
 href=foo.htmlspanAnnouncements/span/a/li
         /ul
     /li
 /ul

 Thanks for your help!

 Aaron


Re: [jQuery] Newbie Question: Finding and manipulating an element

2010-03-01 Thread Nathan Klatt
On Mon, Mar 1, 2010 at 5:06 AM, Aaron Johnson
aaron.mw.john...@gmail.com wrote:
 The top level list has an ID and associated css, I'd like to add a class to
 each of the nested ul elements in order to style them differently. I
 cannot manually add a class so wondered if I could do it with jQuery.

 I'm looking for a result like this:

 ul class=foo
     lia title=Announcements1 href=foo.htmlspan
 class=portal-navigation-labelHome/span/a
         ul class=bar

If all of the inner uls are styled the same you don't need a class,
just add a rule to your css:

ul.foo  li  ul {
  /* style stuff */
}

Nathan


Re: [jQuery] Newbie Question: Finding and manipulating an element

2010-03-01 Thread Aaron Johnson
Greg, Nathan, Thanks very much for your help!

On 1 March 2010 14:58, Nathan Klatt n8kl...@gmail.com wrote:

 On Mon, Mar 1, 2010 at 5:06 AM, Aaron Johnson
 aaron.mw.john...@gmail.com wrote:
  The top level list has an ID and associated css, I'd like to add a class
 to
  each of the nested ul elements in order to style them differently. I
  cannot manually add a class so wondered if I could do it with jQuery.
 
  I'm looking for a result like this:
 
  ul class=foo
  lia title=Announcements1 href=foo.htmlspan
  class=portal-navigation-labelHome/span/a
  ul class=bar

 If all of the inner uls are styled the same you don't need a class,
 just add a rule to your css:

 ul.foo  li  ul {
  /* style stuff */
 }

 Nathan



[jQuery] Excellent Java Consultant For Your Direct Client Requirement

2010-03-01 Thread ajay solanki
 Hi,

My name is Ajay Solanki and I represent International Business Solutions
Ltd. Here I am presenting a brief snapshot summary of the consultant  currently
available for projects.

Please let me know if you have any openings for them. If you have any
suitable requirement kindly send it ASAP Thanks

LOCATION :- CA, AZ, OR , WA, NV,ID,UT

*Lakshmi (Sr. Java Developer)*

*javadevelope...@gmail.com* javadevelope...@gmail.com**

*Phone : 732-981-0450 Ext.  424*

* *

*Sumary Skills*

* *

·

· 10 years of professional IT experience in Systems Design,
Development, Testing, Integration and Implementation of Client/Server and
web based n-tier architecture systems with strong knowledge of J2EE
architecture.

· Strong in J2EE application development using Java, Servlets, JSP,
EJB, JDBC, XML, Struts.

· Experience with Java Bean development, EJB component development 
deployment, Graphical User Interface design using JFC/Swing, web page
development using JSP, HTML and JavaScript.

· Strong Development background using Object Oriented Languages.

· Possess strong knowledge of SAX and DOM parsers for XML parsing.

· Strong database design and development experience in Oracle, SQL
Server.

· Good working experience handling Stored Procedures in Oracle 9i,
SQL Server.

· Strong problem solving, logical implementation, trouble-shooting,
installation and configuration skills.

· Good exposure to entire software life cycle like feasibility,
system study, design, coding, testing and implementation.

· Experience in development of Test Plans and Test Cases.

· Experience working with the source control and versioning tools
VSS and StarTeam.

· Worked on domains like Telecom, Financial Services, e-Governance,
and e Learning.

 * *

*Technical Skills : -*

Skill Type

Skill Name

OS

Windows XP, UNIX

Languages and Enterprise Application programming

Java, J2EE, JSP, HTML, XML, XSL, XQuery, XMLBeans, XSLT, JavaScript, DHTML,
AWT, Swing, Ajax, jQuery, RMI, EJB, Servlets, Ant, Log4j, Junit, JMS, JSF,
Shell, ASP, SQL, PL/SQL

Database

Oracle, MS-SQL Server, MS-Access, DB2,  and PL/SQL

Testing Tools

JUnit

Source control

StarTeam, VSS, CVS

Application Servers / Webservers

Web logic 10.3, Oracle 9iAS, JBoss, Websphere, Apache, Tomcat

Design skills

UML (Rational Rose, Visio), Object Oriented Analysis and Design (OOAD),MVC
Design patterns, GOF Design patterns, J2EE Design patterns, EJB Design
patterns etc

Web Servers

Apache with Tomcat, Sun One and IIS

Frame work

Spring(Web flow, IOC, AOP, MVC) , Struts, Hibernate, Ibatis, MVC
architecture, Tapestry, JSF

IDE

Eclipse Springsource tool, RAD 6, JBuilder 5, Eclipse Together 2006

Design and Modeling

Visio and Rational Rose

SOA

Web services, SOAP, WSDL

Other tool

Ant 1.6, Maven 2, log4j







Ajay Solanki

International Business Solutions
E-mail:- ajay.sola...@ibs-consulting.net

Phone : 732-981-0450 Ext 424

Web: - www.ibs-consulting.net || www.ibs-nj.com


[jQuery] Re: keyup() fires multiple times?

2010-03-01 Thread Keith Hughitt
Looks like the problem is OS-specific. In Ubuntu 9.10, for example,
there is an option that is enabled by default in the user's keyboard
preferences
which causes key-holds to simulate multiple key-presses. Turning this
off results in the expected behavior. On Windows, the default behavior
is for key-holds to behave like key-holds so no problem exists.

Any suggestions for normalizing behavior across platforms?

Keith

On Jan 5, 3:38 pm, Keith Hughitt keith.hugh...@gmail.com wrote:
 Hi all,

 I'm creating a method for the first time which causes some action to
 happen while a key is pressed. I've noticed, however, that the 'keyup'
 event which I would  normally use to determine when the key is
 released is fired continually, even when the key is still being
 pressed.

 e.g.

 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/
 TR/html4/strict.dtd
 html
 head
         titlejQuery  Keyup Test/title
         script src=http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
 jquery.js type=text/javascript/script
 /head
 body
 script type=text/javascript
 $(function () {
     $(document).keydown(function (e) {
         console.log(keydown);
     }).keyup(function (e) {
         console.log(KEYUP);
     });});

 /script
 /body
 /html

 Instead of seeing keydown, keydown...keydown, KEYUP. It
 switches back and forth between the two continually. So far I've
 tested the same demo in FF 3.5, 3.7 and Chrome 3.x.

 Any ideas?

 Thanks!


[jQuery] Slide down / Slide up, stop repeating

2010-03-01 Thread Paul Collins
Hi all

I've got a drop down menu that expands when you hover over a heading. Here
is the JQuery

$(#header .dropDown .content).hover(
  function () {
$(#header .dropDown ul).slideDown();
return false;
  },
  function () {
$(#header .dropDown ul).slideUp();
return false;
  }
);

My problem is that if someone hovers over the .content multiple times, the
JQuery remembers and keeps popping the menu up and down even when you've
taken the mouse away. Is there a way to stop it remembering this? I've tried
adding the .stop() to the function, but this will stop it half way if you
hover out too early.

If anyone has encountered this before, could you tell me how you got around
it?!

Thanks for any help


[jQuery] page_request.send(null)

2010-03-01 Thread Erik
www.naturalskin.com

I'm getting an error win LINE 30 with Firebug  I'm using AJAX
Includes to load in external content.  Everything looks great and
works fine, but I keep getting an error

global.js (line 30)
page_request.send(null)

Should I delete this line?
Should I add something in the line?

Erik


[jQuery] JQuery Email Validation does not work

2010-03-01 Thread iceman
Hello
I am on JQuery 1.4.1 using validation fromawork by Jörn Zaefferer 1.6
version.
I need to send multiple comma separated emails .
It fails for the following format
FirstName Last Name [firstName dot lastName at xyz dot com]

Please guide.
Thank You
Iceman