[jQuery] Grab external Meta and Title

2009-09-09 Thread Crazy-Achmet

Hey,

i want to insert a web address into an input field after i click on a
button, i want jquery to grab the title and the meta attributes of the
website.

Like if i type http://www.jquery.com i want to get jQuery: The Write
Less, Do More, JavaScript Library and the meta jQuery is a fast and
concise JavaScript Library that simplifies HTML document traversing,
event handling, animating, and Ajax interactions for rapid web
development. jQuery is designed to change the way that you write
JavaScript.

Do you think it's possible with jQuery? Would be awesome!

Thanks in advance

Greets from Germany

Flo


[jQuery] this (class) + id + text

2009-01-26 Thread Crazy-Achmet

Hey,

sorry for the weird topic but i couldn't find a better one so i choose
this! ;)

Right now, i got this code:

$('.show_image').hover(
function(){
$('.image').show();
},
function(){
$('.image').hide();
}
);

The href looks like this:

a href=# class='show_image' id=image_1Show Image 1/a
...

So, if i mouseover one of my 10 show_image classes, all image are
shown. What i want is, that only the image with the select ID is
shown.
I thought, that i could do something like this:

$(this).ID of this.some text to reach the image.show()

I hope you understand what i mean.

Thanks for your help

Flo


[jQuery] Re: this (class) + id + text

2009-01-26 Thread Crazy-Achmet

Amazing, worked like a charme! ;)

Thanks

On 26 Jan., 16:42, Eric Garside gars...@gmail.com wrote:
 Ugh, sorry. Mondays. ;_;

 The correct code should be:
 $('.show_img').hover(
      function(){
         $($(this).attr('href')).show()
      },
      function(){
         $($(this).attr('href')).hide()
      }
  );

 On Jan 26, 10:33 am, Eric Garside gars...@gmail.com wrote:

  Lets assume you have the following html:

  a href=#image_1 class=show_imageShow Image/a
  a href=#otherImg class=show_imageShow Image/a
  a href=#image_2 class=show_imageShow Image/a

  img src=a.png id=image_1 alt=Some Image/
  img src=b.png id=otherImg alt=Some Image/
  img src=c.png id=image_2 alt=Some Image/

  Then the code you want is:

  $('.show_img').hover(
     function(){
        $(this.href).show()
     },
     function(){
        $(this.href).hide()
     }
  );

  this.href contains the jQuery selector you want to make visible, and
  corresponds with the id attribute of the images.

  On Jan 26, 10:23 am, Crazy-Achmet crazyach...@gmail.com wrote:

   Hey,

   sorry for the weird topic but i couldn't find a better one so i choose
   this! ;)

   Right now, i got this code:

                   $('.show_image').hover(
                           function(){
                                   $('.image').show();
                           },
                           function(){
                                   $('.image').hide();
                           }
                   );

   The href looks like this:

   a href=# class='show_image' id=image_1Show Image 1/a
   ...

   So, if i mouseover one of my 10 show_image classes, all image are
   shown. What i want is, that only the image with the select ID is
   shown.
   I thought, that i could do something like this:

   $(this).ID of this.some text to reach the image.show()

   I hope you understand what i mean.

   Thanks for your help

   Flo


[jQuery] Re: xml find element with this attribute value

2008-12-11 Thread Crazy-Achmet

Hey,

i couldn't get it to work!

This is my code to get all the event nodes.

$(xml).find('event').each(function(){
var name = $(this).attr('name');
$('option 
value='+name+'/option').html(name).appendTo
('#select_event');
});

But i just want to show a special event (for example where the the
attribute name equals to test). Can someone help me with a code
example.

Greetings

Flo


[jQuery] XML find element with special attribute

2008-12-09 Thread Crazy-Achmet

Hey,

this is the code that works perfectly to show all XML Elements:

$.ajax({
type: GET,
url: events.xml,
dataType: xml,
success: function(xml) {
$(xml).find('event').each(function(){
var name = $(this).attr('name');
$('option 
value='+name+'/option').html(name).appendTo
('#select_event');
});
}
});

Now, i only want to show the elements where the event attribute name
is like test.

Thanks in advance for your help

Florian


[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-20 Thread Crazy-Achmet

Hmmm, guess it didn't work so well, right?


[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-12 Thread Crazy-Achmet

No news are good news? ;)


[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-09 Thread Crazy-Achmet

Hey Gilles,

how is it going? Is there something to see? ;)


[jQuery] Re: Photo Tagging (Notes)

2008-11-07 Thread Crazy-Achmet

Hey Tarique,

thanks for your answer and special thanks for the changes you made on
your example! That helped me a lot.

I allready did the saving function, maybe not perfect but i fit for my
needs and thats all i want! ;)

Maybe you can help me out with one little think. Could you give me a
hint, how i can do it, that all the notes (or just one note, doesn't
matter) are shown under the image and if i hover over the note, the
area in the image is showing up?

Thanks in advance, you did an awesome job on the plugin!

Greets from Germany

Flo


[jQuery] Photo Tagging (Notes)

2008-11-04 Thread Crazy-Achmet

Hi,

i was looking all over the web for a really cool picture tagging
script in jQuery. The result of the search was, that there aren't any
kind of cool solutions of that kind of script like facebook or flickr
has.

I found very similar script over here http://www.dustyd.net/projects/PhotoNotes
but that script is almost 2 1/2 years old (not thats that so bad) and
not in jQuery.

I found so many people askin' for a script like that, i don't
understand why nobody made a port or a complete new script of it?
Unfortunately my JavaScript and jQuery aren't good enough to do it on
my own but i would even pay a little bit if someone would do it! :)

Maybe there is 1 jQuery Plugin to work on over here:
http://www.sanisoft.com/blog/2008/05/26/img-notes-jquery-plugin/

Greets from Germany

Florian


[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-10-28 Thread Crazy-Achmet

I'm really lookin forward to the new version!!!

It's awesome that you're still workin' on it! ;)