[jQuery] JMAPS Question

2008-09-13 Thread Kyle Decot
I am creating an application in which I am plotting multiple points on a Google Map using jMaps. How do I center the map to show all the points on the map? I can only find information on centering the map over one point. Thank you for your help.

[jQuery] Re: jCarousel - Height Issue

2008-09-13 Thread Cosmo Kramer
I changed the scroll to one and it still goes to far down. On Sep 14, 5:15 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Maybe try changing the 2 to 1 here, in your page's code: > > jQuery('#mycarousel').jcarousel({ >                                 scroll: 2, >                          

[jQuery] Jeditable and TinyMCE

2008-09-13 Thread ph4nt0m
I've been trying to follow Sam Currens excellent example on how to use TinyMCE with jeditable http://sam.curren.ws/index.cfm/2008/6/12/jEditable-TinyMCE-Plugin but i seem to have come across a slight problem, it the data is posted to a URL and not a function as per Sam's example, the posted data

[jQuery] Re: jQuery UI Resizables, iframes and FireFox

2008-09-13 Thread Richard D. Worth
This is the recommended approach. Put a div over it. - Richard On Thu, Sep 11, 2008 at 12:43 PM, aksival <[EMAIL PROTECTED]> wrote: > > Maybe you could overlay the IFRAME during the resize process. This > would prevent mouse from going "off the page". > > Best, > Cory > > > On Sep 8, 9:05 pm, B

[jQuery] Re: How can I get the value of any control I click?

2008-09-13 Thread Richard D. Worth
The simplest method is select all the buttons: $("button") then attach a click handler to all of them: .click(function() { ... }) then inside that callback function you get the value of the clicked element (this) by: var val = $(this).val(); Putting it all together: $("button").click(functio

[jQuery] Re: mousedown, mousemove, mouseup

2008-09-13 Thread Richard D. Worth
The trick is to bind the mousemove and mouseup to the document, not the original element. Your mouse can move much too quickly and end up on any element while the mouse is still down. This is what jQuery UI does, with the mouse plugin (an internal plugin in ui.core.js used by draggable, selectable,

[jQuery] Free Music Downloading Legality

2008-09-13 Thread Wartian Hersard
Free Music Downloading Legality http://musicdownload-site.blogspot.com/

[jQuery] How can I get the value of any control I click?

2008-09-13 Thread jmDesktop
I have a form with five buttons. Each one may have a different value. I can't figure out how to get the value and put it in an alert box. I can't find in the docs where to look. I found .val(), but not how to really use it. I don't want to select a specific button, I don't know which on the u

[jQuery] Tablesorter and Hebrew?

2008-09-13 Thread Nitsan Bin-Nun
Hi, I'm trying to tablesorter a table which contains Hebrew values. I want the plugin to sort it Hebric Alphabetically, Does someone has an experience with such a thing? I haven't dealt with Hebrew and jQuery before (in case it matters, the encoding is UTF8). Thanks in Advance, Nitsan

[jQuery] Re: $(this).select(); is funky in Safari?

2008-09-13 Thread chriscoyier
I do want the text to remain in the field when users enter it. The users specifically enter it in their account as a default. If I use the click event instead of focus, it does work. I just would rather use the focus event since it would cover someone "tabbing" into that textarea instead (fairly

[jQuery] Re: Code Editors

2008-09-13 Thread Michael Geary
> Just installed Aptana and after 60 seconds of testing - that > *exactly* what I wanted. I will have to take a look at Aptana sometime, I've heard good things about it. Does it have realtime syntax checking? I use Komodo, which checks the syntax in all the languages I use. It puts a squiggly r

[jQuery] Re: How do I update my control after I submit data to my database?

2008-09-13 Thread Josh Nathanson
You can return whatever you want, by outputting the value from your php page...I would use Firebug and do console.log( data ) in your callback so you can make sure that it's returning the expected value. -- Josh - Original Message - From: "jmDesktop" <[EMAIL PROTECTED]> To: "jQuery

[jQuery] Jquery/Ajax expert

2008-09-13 Thread ab2qik
A Jquery/Ajax expert required for a mobile phones company. The work is to cover intranet in UK and India for the call centre team. Your input will primarily be on Jquery. Your experience will cover sliders, collapsible lists, drag/drop, ajax requests to D.B etc Its expected you have corresp

[jQuery] Re: Toggle doesn't perform well in Safari and crashes Chrome

2008-09-13 Thread robertaugustin
Thanks for your reply Matt, I'm not sure what you mean though. It works in FF and IE just fine, and I believe jquery handles toggle even with no args? I did try your code but it didn't work... On Sep 13, 12:19 am, Matt Henry <[EMAIL PROTECTED]> wrote: > toggle() takes two functions as arguments,

[jQuery] edit in place and linked item

2008-09-13 Thread lionel28
hello, I have a linked title and I wish to use edit in place by Malsup to edit it. How can I do so with just the title without including the link? I made the td the class, so when you double click anywhere in it, the box opens. But the box displays (opened tag a) id="2" href="javascript:create

[jQuery] Re: focus and blur event problem

2008-09-13 Thread [EMAIL PROTECTED]
Use a variable to keep track of the appearance of the new tag you're adding. Your focus() event should add 1 to the variable,and check the variable. If the variable is non-zero before its incremented, the message is already there, don't add it again. Then of course your blur() function should

Re: [CMake] Can't find crypt

2008-09-13 Thread Hendrik Sattler
Am Saturday 13 September 2008 18:36:32 schrieb Razaj: > __CMakeLists.txt snippet__ > # Check for crypt, if not found check for crypt in libcrypt > CHECK_FUNCTION_EXISTS(crypt CRYPT_EXISTS) > IF(NOT ${CRYPT_EXISTS}) > CHECK_LIBRARY_EXISTS(crypt crypt "" CRYPT_LIB_EXISTS) > ENDIF(NOT ${CRYPT_EXIS

[jQuery] Plugin Inputs

2008-09-13 Thread shapper
Hello, I am using the following DatePicker plugin: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html I want to add extra inputs ... I mean, instead of the Date Picker CSS Classes being defined in the plugin I want to set default values and add them as inputs of the plugin ...

[jQuery] Validation class question

2008-09-13 Thread flycast
I am using the validate plugin. I have the following input that is required: Last: When the field is satisfied I want the required class to be changed to "satisfied" class so I can make it display differently. If the field is required then I want itr displayed red, if it has met the validate r

[jQuery] Re: $(this).select(); is funky in Safari?

2008-09-13 Thread Michael Geary
Do you really want the sample text to remain in the field when you click it, or would you like to have it disappear when you click? Unless the sample text is something that the visitor might actually want to keep and edit, I think it's better to have it disappear. The overlabel plugin does a nice

[jQuery] Re: TinyMCE and JQuery

2008-09-13 Thread shapper
I also found the following: http://dev.jquery.com/wiki/Plugins/tinyMCE What do you think? Which approach should I use? Any advice from anyone is welcome ... Thank You, Miguel On Sep 13, 7:17 am, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > shapper ha scritto:> Hello, > > > I want to

[jQuery] Re: Omniture tracking code clashing with jquery

2008-09-13 Thread Colin Guthrie
tats611 wrote: > Hi Colin, > > Here is my current project. > link below shows that the script is working fine (without omniture > codes). > > http://www.tya.com.sg/microsite/vaio/index3.html > > This one have the tracking codes. > > http://www.tya.com.sg/microsite/vaio/index2.html > > Again

[jQuery] Re: jQuery Form Plugin

2008-09-13 Thread Mike Alsup
> I'm trying to use the beforeSubmit callback of the jQuery form plugin > to check some values with the server before submitting the entire > form, which can include a large file upload (which would be annoying > to upload, and then fail due to other submitted values being invalid-- > hence the pr

Fwd: free and full E-books download

2008-09-13 Thread Theebika
*free and full E-books download * http://ebooksstore4u.blogspot.com/ http://ebooksstore4u.blogspot.com/ http://ebooksstore4u.blogspot.com/ http://ebooksstore4u.blogspot.com/ ASP.NET 2.0 Demystified Foundations ASP.NET AJAX PHP and MySQL PHP Anthology,2 Editio

[jQuery] using load() with page that also uses jQuery - Not Loading Click to flag this post

2008-09-13 Thread Jay Drozd
I'm trying to load a page that is basically an edit form inside a dialog (ui.dialog). I can load this page fine from an external (I'm using asp.net) page. The problem is that inside of my "popup" form, I need to $(function() {my function here}); syntax to do some stuff when the page loads, along

[jQuery] Re: Code Editors

2008-09-13 Thread Andiih
Just installed Aptana and after 60 seconds of testing - that *exactly* what I wanted.

[jQuery] Re: Toggle doesn't perform well in Safari and crashes Chrome

2008-09-13 Thread Matt Henry
toggle() takes two functions as arguments, so your $("div#menuchild_1").toggle( SHOW_FUNCTION HIDE_FUNCTION ); On Sep 12, 4:32 pm, robertaugustin <[EMAIL PROTECTED]> wrote: > Hi, > > I'm having a problem with jquery's toggle function in Safari 3.1.2 and > Google Chrome, maybe one of you knows th

[jQuery] Re: How do I update my control after I submit data to my database?

2008-09-13 Thread jmDesktop
Thank you. I don't think it will be json though. What if it is not json? On Sep 12, 6:14 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > You would do this in the callback function from the ajax call.  One way > might be to have an empty div available on your page: > > > Then the ajax callbac

[jQuery] $(this).select(); is funky in Safari?

2008-09-13 Thread chriscoyier
My goal is to have a text area that has text content in it already, but when you click into it the text highlights so you can easily replace it. $("textarea").focus(function(){ $(this).select(); }); Works great in Firefox (3), but in Safari (dev 4), the text hightlights quick and then un-highlig

[jQuery] Re: Omniture tracking code clashing with jquery

2008-09-13 Thread tats611
Hi Colin, Here is my current project. link below shows that the script is working fine (without omniture codes). http://www.tya.com.sg/microsite/vaio/index3.html This one have the tracking codes. http://www.tya.com.sg/microsite/vaio/index2.html Again this one is using a variation of the coda

[jQuery] focus and blur event problem

2008-09-13 Thread yo2lux
I have this code to insert an HTML tag before an input field (input type="text" id="edit-title"). var myText = 'This is a message'; $("#edit-title").focus(function() { $(this).before(myText); }); $("#edit-title).blur(function() { $(".nodemsg").remove(); }); Sometimes the focus event is ca

[jQuery] Re: Code Editors

2008-09-13 Thread Andiih
Downloading Aptana studio now. That's exactly what I am after I think! Cheers everyone!

[jQuery] maps

2008-09-13 Thread patti
Play over 3000 free online games! Including arcade games, puzzle games, funny games, sports games, shooting games, and more! New free games every day at ... watch the xclusive events on what u r lokin: Free games - Shockwave is the best place to play free online games, games downloads

[jQuery] jQuery Form Plugin

2008-09-13 Thread René
I'm trying to use the beforeSubmit callback of the jQuery form plugin to check some values with the server before submitting the entire form, which can include a large file upload (which would be annoying to upload, and then fail due to other submitted values being invalid-- hence the pre-submit c

[jQuery] jCarousel - Height Issue

2008-09-13 Thread Cosmo Kramer
I using jCarousel and for some reason I can not seem to stop the carousel from sliding down past the last image. Can anyone tell me how to fix this? I have put up a demo: http://www.dvq.co.nz/gallery/

[jQuery] jQuery UI: Radiobutton- und Checkbox-Replacement

2008-09-13 Thread MauiMan2
I am using the Radiobutton and Checkbox-Replacement plugin (http:// www.protofunc.com/scripts/jquery/checkbox-radiobutton/) on the following page: http://www.tccnotary.com/contractorform.php Can somebody figure out why it's working on the checkboxes but not on the radio buttons? Bonus points to

[jQuery] ajax TreeView recursive open

2008-09-13 Thread Johan Cwiklinski
Hello, I'm using a Treeview plugin (http://docs.jquery.com/Plugins/Treeview) with its async extension. Basic usage is very well working, I just had to change a bit the async code to suit my needs. Actually, I'm trying to recursively open given nodes ; but without success... I got an ajax resul

[jQuery] Re: AutoComplete Detecting mustMatch failure.

2008-09-13 Thread Jörn Zaefferer
Could you file a ticket for this? http://dev.jquery.com/newticket Thanks Jörn On Fri, Sep 12, 2008 at 8:05 PM, PeterS <[EMAIL PROTECTED]> wrote: > > There is a simple way to solve this - but you have to alter the plugin > code: > > 1. Look for the `function hideResultsNow()` > 2. Below the code >

[jQuery] Re: IE and Validate

2008-09-13 Thread Jörn Zaefferer
I don't know why it works in FF, as the usage is plain wrong. The submitHandler lets you do stuff after validation before submission. With something like this you can combine that with a normal submit: $(..).validate({ submitHandler: function(form) { // do some other stuff form.