[jQuery] Re: Get input value from a loaded page

2008-05-18 Thread ferdjuan
Is your script which processes the $Count variable (I assume it's a page hit checker?) being included before the line: $ (#top).load(top.htmll);? If the assignment for $Count is made at the wrong time, and then you .load an html file I don't think $Count will have any value. Immediately below the

[jQuery] Re: $.post() not sending info

2008-05-18 Thread ferdjuan
If this code is verbatim I would suggest some kind of validation in your php script, with the script you have now anyone could hijack your database with an sql injection, or anything really. I suggest looking at: stripslashes(), striptags(), preg_match(), ereg(), trim(), any validation is better

[jQuery] Tooltips

2008-05-18 Thread MartinS
Can jquery or a plugin do this: On http://www.ns.nl - click on the inputfield next to 'station'. A text balloon shows up and disappears when you click somewhere on the page. It would be great if you could change the text in the balloon for each input field.

[jQuery] Re: Get input value from a loaded page

2008-05-18 Thread dearste
ok, in top.html, below inpu type..., i have added ?=echo $Count;?, and yes, php var is set in top.html. How to pass it in main page with a jquery .load?? On 18 Mag, 08:21, ferdjuan [EMAIL PROTECTED] wrote: Is your script which processes the $Count variable (I assume it's a page hit checker?)

[jQuery] Javascript of jQuery?

2008-05-18 Thread Mark
Hi, first post here ... I have searched and cant find an answer to this but I'm sure it's been asked before ...anyway, here goes: I have only a rudimentary grasp of javascript but I'm very interested in jQuery - so, is it better for me to learn Javascipt first and then jQuery Or is it

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Michael Freßmann
Hi, Mark! You should focus on jQuery, but don't forget to read the one or the other thing about javascript itself. Once being able to do things in jQuery (or any other javascript framework), you surely won't ever again want to write scripts in pure javascript. best regards, Michael Am

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Sridhar Kuppalli
Better learn basics of the javascript and you can go ahead. If you have the knowledge of any other programing languages, then it will not take more time to catch javascript. On Sun, May 18, 2008 at 5:25 PM, Mark [EMAIL PROTECTED] wrote: Hi, first post here ... I have searched and cant find

[jQuery] cycle plugin: rotation from outside elements

2008-05-18 Thread tsvika solan
Hi, I am using the cycle plugin for an image gallery with thumbnails as my 'pager' and it's working quite great. However, on the page that opens up my slideshow I have a little 'sample' or 'preview' containing four selected images from the images inside the slideshow. Is there any way to set it

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Rey Bango
Mark, You should really get a grasp of how JavaScript works so that you can be a more effective client-side developer. jQuery makes things easier but you still should know how to handle, at the very least, the basic constructs of the JavaScript language. It will help in understanding why

[jQuery] Re: Concat

2008-05-18 Thread eppytx
Thank you very much... Worked like a charm!! Thanks jimmy On May 17, 11:25 am, Tane Piper [EMAIL PROTECTED] wrote: var imagename = $('a').attr('href'); var newname = 'M' + imagename; $('a').attr('href', newname); eppytx wrote: I have the following jquery in an gallery page:

[jQuery] [PLUGIN] Ajax Edit Comments for WordPress 2.1+

2008-05-18 Thread Rey Bango
Found in the wild. WP Ajax Edit Comments (for WP 2.1+) allows users and admins alike to edit comments on a post. http://www.raproject.com/ajax-edit-comments/ Rey...

[jQuery] jMaps: Show HTML bubble?

2008-05-18 Thread sawmac
I'm using jMaps (jQuery Google Maps plugin). Is there a way to make a marker's HTML bubble appear when the map loads? It looks like that HTML bubble only opens based on a marker event (like click or mouseover). I'm hoping to just have the bubble visible without any user action. thanks --dave

[jQuery] Re: Get input value from a loaded page

2008-05-18 Thread dearste
the loaded page is top.php , where $Count; is set. regards On 18 Mag, 12:22, dearste [EMAIL PROTECTED] wrote: ok, in top.html, below inpu type..., i have added ?=echo $Count;?, and yes, php var is set in top.html. How to pass it in main page with a jquery .load?? On 18 Mag, 08:21,

[jQuery] Re: Corners and IE 7 problem

2008-05-18 Thread Kyle
Any work-arounds? On May 17, 8:22 pm, Kyle [EMAIL PROTECTED] wrote: http://epistemicdev.info/lsn/test.php For the curious. First is an unordered list with floats. Second is an unordered list with block display. Third is a handful of floating divs. Perfect in FF, Safari. Struggles in IE.

[jQuery] Re: jMaps: Show HTML bubble?

2008-05-18 Thread Joe
Hey Dave, This should help for the google maps API portion. You will most likely need to modify/extend the jMaps plugin to implement this process: http://groups.google.com/group/Google-Maps-API/browse_frm/thread/e0babe35e826a218/6093950fa213b493 I tried to change the jMarkerDefaults from

[jQuery] Re: cycle plugin: rotation from outside elements

2008-05-18 Thread Mike
I am using the cycle plugin for an image gallery with thumbnails as my 'pager' and it's working quite great. However, on the page that opens up my slideshow I have a little 'sample' or 'preview' containing four selected images from the images inside the slideshow. Is there any way to set it

[jQuery] Re: Password Strength Meter 2 release

2008-05-18 Thread Joe
Nice Tane! Good to see your at it with yet another plugin. Well done. Joe www.subprint.com On May 17, 11:06 am, Tane Piper [EMAIL PROTECTED] wrote: Hey folks, Just a quick update to let you all know that I've released a new version of my password strength meter plugin:

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Klaus Hartl
Yes, in the end jQuery is nothing else than JavaScript - although a very excellent piece ;-) --Klaus On May 18, 4:42 pm, Rey Bango [EMAIL PROTECTED] wrote: Mark, You should really get a grasp of how JavaScript works so that you can be a more effective client-side developer. jQuery makes

[jQuery] Re: Tooltips

2008-05-18 Thread kareneliot
Something like that would be possible with jQuery, but I doubt if it would be a simple 'plugin' for jQuery, more something you'd have to build yourself. But it would be quite straightforward to do it.

[jQuery] JQuery and ASP.NET AJAX

2008-05-18 Thread Mike
Do these work well together or cause conflicts?

[jQuery] [AutoComplete]

2008-05-18 Thread ChrisLongden
Hi, I am using the brilliant autocomplete functionality available here (http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/) I am using the 'Multiple Birds (remote)' version from the demo. I can't see anything in the documentation about removing items that the user has already

[jQuery] Re: Load (AJAX) callback after javascript evaluations

2008-05-18 Thread Pyrolupus
On May 15, 12:44 am, jk [EMAIL PROTECTED] wrote: JQuery.load can receive a callback function as one of its parameters. According to the online docs, this function is called when theajax request is complete. In practice, it appears this callback is performed after theajaxrequest is complete

[jQuery] jscrollPane scroll to can't find first element

2008-05-18 Thread pedalpete
Hey, I'm using Kevin Luck's jScrollPane on an ajax retrieved list. The first time I call the page, it works no problem, but when I reload the ajax content, if the user has scrolled down, the scroll doesn't return to the top. I call the jScrollPane again on each ajax reload so that the scroller

[jQuery] Re: fireFox + SWF animation bug

2008-05-18 Thread Ade
I'm having the same problem too. *bump* ?? On Apr 16, 7:08 pm, Thomaz [EMAIL PROTECTED] wrote: hello I´m having problems with a flash movie placed in a jQuery animatted div on FireFox (work´s fine on IE6). When the $ animate function is played to resize the container div, the sfw reloads

[jQuery] Modiyfing an XML document with jQuery

2008-05-18 Thread jakoob
Hi, I've been trying to figure out how to work with XML in jQuery for the most part of today as here is what I wanted to accomplish: 1) read in an xml file and convert it to a workable object 2) modify the xml (do adds, removes, and changes to the xml object) 3) convert the xml object back to

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Josh Nathanson
Just to add a bit to this...I recently was forced to write in pure javascript rather than jQuery for the first time in a while, and it was a very good exercise in getting back to basics. So I would also recommend learning some of the basics of javascript at least in tandem with learning

[jQuery] Re: fireFox + SWF animation bug

2008-05-18 Thread Karl Rudd
It's a long standing bug in Firefox. I don't know if it'll be fixed in Firefox 3. Basically if you alter, by changing the CSS (say width, height or 'display'), of Flash movie or anything that contains a Flash movie, the movie will reload. See this older thread for more details:

[jQuery] second time jquery is included, kills previously called plugins

2008-05-18 Thread Shelane
if you have this in this order, the plugin call won't work. it will give an error that the plugin function is not defined script type=text/javascript src=/scripts/jquery.pack.js/script script type=text/javascript src=/scripts/jquery.corner.js/ script $(function(){

[jQuery] attr('form') not work in firefox

2008-05-18 Thread [EMAIL PROTECTED]
This is my html: form id=myForm action= input type=text id=a / /form and javascript: script type=text/javascript $(document).ready(function() { var form = $('#a').attr('form'); alert(form.attr('action')); }); /script it works in IE 7.0, but in FF form is 'undefined', I can get the form

[jQuery] Re: attr('form') not work in firefox

2008-05-18 Thread Matt Quackenbush
Unless I'm completely misunderstanding something here, that code should not work in any browser. There is no form attribute on an input / element. What are you actually trying to accomplish? On Sun, May 18, 2008 at 8:22 PM, wrote: This is my html: form id=myForm action= input type=text

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-18 Thread Shelane
Hey Jason, I thought it made sense too - the explanation of why it happens. Yes, it would be ideal if jquery were just added to the portal templates. However, the developers don't have control over the portal templates. They are strictly locked down, and there is no way the manager of the

[jQuery] may be a bug

2008-05-18 Thread mouqx xu
Sorry for my poor English. I come across with a odd problem. Here is a html file piece: p id=testa class=here href=#somewheresomething/a some other html tags and content/p and I attach a click event handler to the anchor element, the js code is like this: $('#here').click( function(){