Oops, I missed one in the disappear function, which should read:
function disappear() {
$("#response").fadeOut("slow");
}
> The code with proper semicolons would read:
>
> function disappear() {
> $("#response").fadeOut("slow")
> }
>
> $(document).ready(function() {
> $("#message_me").cl
Your code is missing all the semicolons. That can lead to all sorts of
problems, because it causes the code to be parsed in a way that you don't
expect. For example, you may think you are just defining a function for
later use, when in fact the function gets executed immediately!
The code with pr
Thank you, that fixed it.
Don't know, if this has been observed by anybody else. Just wanted to
let everybody know, that jQuery.browser.version returns 6 as version
in IE7. This might have to do with a changed appVersion or user agent
string. Mine are (in IE7):
appVersion:
4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozil
Hey guys,
I am trying to use the plugin of
http://fluidproject.org/blog/2008/01/11/jquery-tabindex-plugin/
to set the tabindexes for my form. I am going through it by querying
it as following but it gives me back inputs, then the textareas, en
then the selects (and I would like the elements base
Well, I fixed it by doing an ugly hack - but it works.
The trick was to use an absolute path on the local machine (a path
that starts with "/" instead of "http://";). Unfortunately it means
that my pathname is very long and if I ever move things around I'll
have to remember to update that. It w
Hi
I have a simple accordion menu and would like to prevent the already
open dd from being closed and reopened when clicked on.
eg.
$("#menu dt a").click(function(){
// only activate if dd is hidden so currently active block is not
reopened
if(hidden???) { $("#menu dd:visible").slideUp
Hello,
on the breadcrumb-element (bottom right) on
http://www.pcwehle.de/demo/hm/index.htm
.animate({width:'show'},"2500") seems not to be able to read the
correct width of the li elements in FF2 and IE7 - IE6 works just fine.
What happens is that it scales the width of the elements up to about
Appears fixed as of 1.1.3
On Jan 10, 2:54 pm, truent <[EMAIL PROTECTED]> wrote:
> Im seeing this too.
>
> This Works.
>
> $(document).ready(
>
> function() {
>
> $("input").each(
>
> function(i){
> alert('hi');
>
> }
>
> );
>
> This does not:
>
> $(document).ready(
>
> function() {
>
> $("input[i
Hi Karl,
Thank you for replying. It looks as animating tbody is not doable
because of different display properties, while .show()/.hide() works
just fine. I tried to animate it through mootools and Adobe Spry - it
does not work.
Interesting that mootools make it work only in Firefox, not IE. The
Actually, the "." before the word toggle shouldn't be there.
It's gone now.
And the "menu-details" div does "hide", however, on mouseover,
it doesn't show. I think my mouseover function needs some changes.
Suggestions?
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTE
Ok. I did manage to get my "menu-details" div on top of the
fading images section by moving it down in the DOM.
However, my jQuery code is still non-responsive.
Here's the code I trying:
$(document).ready(function() {
$('div.image-wrapper').find('div.menu
Hello,
I'm trying to apply a font style to all elements on a page apart from
headers. This is the code I'm using:
$('*:not(:header)').css('font-family', '\'Trebuchet MS\', Arial,
sans-serif');
This seems to apply the new CSS to all elements on the page. What am I
doing wrong?
Thanks.
--Jo
Hey Morgan, any ideas on what i can do with mine? To have my page
updated as live as possible, at the link I gave on the original post,
I am trying to keep the word boxes you see updated, show them being
added, dragged. Thats what i am trying to push.
Any ideas?
Thank you,
Ryan
On Jan 7, 6:35 p
Hi, all.
I'm trying to cause a div to slide down when a menu item is
moused-over, but so far I get no response when the mouse-over occurs.
The HTML is a regular
it works (for the moment not in IE but in Firefox; others still not
tested); we have to fire a load event for the iframe.
main page:
$().ready(function() {
function local_alert()
{
alert("calling from main page");
};
var iframe=$('
Or you can use $('#elem').is(':checked')
2008/1/11, James Dempster <[EMAIL PROTECTED]>:
>
>
> $().ready(function() {
> $('#editOptions').click(function() {
> alert($('input:checkbox[name=listProductID]:checked')); //
> returns only the first value, selected or not
> });
Hi,
I'm try to user http://docs.jquery.com/Plugins/Validation#Form_submit
validation plugin with http://www.lexcat.ro/nicejforms/ niceforms plugin .
This is errors with styles:
http://www.nabble.com/file/p14771796/Untitled-1.gif
Thanks for suggestion!
--
View this message in context:
http:/
I think this is awesome, but I can't for the life of me understand why
you make it so large?
For example, it runs just fine without the ENTIRE file called
"utils.js", where did you use that?
Truly looking forward to later versions, but this one will need some
serious editing before being put int
First of all, I'm a very very newbie here, I'm learning now,
I always have some problems when using jQuery for Ajax and for other things.
Maybe I'm not used to it yet, I'm always missing something.
Let's see this one, I can't figure out why this one doesn't work. When I
write script, I try to
Is it possible to disable target based on responseText.length?
$(document).ready(function() {
var options = {
target : '#mydiv'
beforeSubmit: showRequest,
success:showResponse
};
something like
-
hi, i am trying to select a objects that is generated with PHP through
jQuery AJAX. but its not working
any one please help me.
thank you
JQuery ::
$(document).ready(function(){
$.ajax({
type: "POST",
url: "demo_cal.php",
data: "fnum=2&snum=4",
success: function(msg){
$("
Is there a way to position the cluetip relative to the same position
on the screen?
Bill
hi guys,
I'm using php mcv framework incorporate with jquery.
Is there any plug-ins or a way to make jquery understand natively mcv
format in ajax's url ?
what i mean is, if i have kind of like this script:
$.ajax({
url:someurl.php,
type:'GET',
data: {c: 'controller', m:'methods', p1:'param1',
Hi Joel,
Thanks for your response. This is indeed a wierd one! In fact, my
code is already doing what you suggest... the absolute path was
expanded by php from Wordpress's bloginfo - I was showing you the code
I saved from the page, not my original source code which already uses
bloginfo.
I'm
I think better way is:
JS:
$('#loginform').ajaxForm({
url: 'index.php?load=modules/users/ajax/login.php&function=users_login',
type: 'post'
});
PHP:
if (!empty($_GET['load'])) {
require_once ROOT . '/' . $_GET['load'];
call_user_func_array($_GET['function'], $_POS
For those who where interested in where interested in seeing comet in PHP, I
just wrote a small class for publishing messages in PHP. Check it out.
http://morglog.alleycatracing.com/wordpress/?p=22
On Jan 10, 2008 2:50 PM, Morgan Allen <[EMAIL PROTECTED]> wrote:
> Couple updates. Batch control, s
My pleasure. jQuery selectors have changed my life (I kid you not),
definitely worth a weekend poking around!
Pipes
Check it out!
http://plugins.jquery.com/project/countdown
Still has some improvment to do
I would love some suggestions, tips, changes, even in the comments on the code
lol
Didnt made the help nor demo yet, will probably this weekend
This component countdown a value in seconds, i.e. 200 wil
hi,
someone knows how to execute events from the main page but when something in
the iframe happens?
I have an iframe made by jqModal, and I can access divs, forms... by
something like this;
//iframe and the 'name' of the iframe
$('iframe#info').contents().find('#id')
But trying to fire an a
It looks like thickbox is not getting bound to the link that you're
dynamically creating in the popup.
In function createMarker, try adding a call to tb_init(), so that
thickbox gets bound to the link in the HTML that you're putting into
openInfoWindowHtml():
GEvent.addListener(marker, "cl
31 matches
Mail list logo