[jQuery] how to make an alert before processing a form

2009-04-28 Thread hybris77
i might be tired right now but I cannot seem to figure out a good way to show an alert before processing a form, the form is not processed using AJAX, just passed on to a PHP script I might however want to implement AJAX when processing the form, hmmm, maybe that will sort me out then I guess

[jQuery] Re: how to make an alert before processing a form

2009-04-28 Thread hybris77
I think what I want to do is do a preventDefault(), throw a custom alert with a YES and NO button then reverse the preventDefault() maybe? Hmmm, but im not sure im on the right track here /pär

[jQuery] Internet Explorer - my jQuery is not working

2009-04-17 Thread hybris77
anyone aware of what is the problem with my jQuery code that makes it nor run in IE? are there particular issues to be aware of? /pär

[jQuery] Re: Internet Explorer - my jQuery is not working

2009-04-17 Thread hybris77
there is a problem with your code or syntax without posting more information than not working or examples of what you are trying to do and how you are doing it makes it absolutely impossible for others to help you On Apr 17, 7:40 am, hybris77 dist...@yahoo.com wrote: anyone aware of what

[jQuery] how to select elements inside jQuery objects

2009-04-16 Thread hybris77
i've tried to do the following on a grand scale the last few days, please help my suggestion to select a classname inside a object containing the xhtml $( mol_elements .mol_row ).append( td+ molname +/td); I was then suggested the following, but that selects BOTH class and element, right?

[jQuery] Re: show the number of insert record php jquery

2009-04-16 Thread hybris77
is it the autoincrement value that you are after? php.net says - mysql_insert_id /pär On 16 Apr, 10:52, bharani kumar bharanikumariyer...@gmail.com wrote: Hi All can u tell , how to show the record inserting count at the time of insert process , Using PHP,JQUERY thanks -- உங்கள்

[jQuery] Re: show the number of insert record php jquery

2009-04-16 Thread hybris77
not sure what you are after, is it a paging function? or plainly displaying the latest inserts? On 16 Apr, 11:21, bharani kumar bharanikumariyer...@gmail.com wrote: Hi harbris , I want something like  , user want to know till how records inserted , like in the page view , we have to show

[jQuery] how can I add to different elements inside a jQuery object?

2009-04-15 Thread hybris77
ponder something like this: var elements = $( '#template_elements' ).html(); $( elements .mol_row ).append( td+ molname +/td); is that the correct way to add to a particular element inside a cached jQuery object? many thanks /pär

[jQuery] grabbing html and putting it back

2009-04-15 Thread hybris77
anyone. Please look at the following example, useless code since it's just grabbing, html and putting it back again but I need to do this and more inbetween my problem is that it's just not working, my browser kindof crashing, not completely but nearly var mol_elements = $(

[jQuery] Re: grabbing html and putting it back

2009-04-15 Thread hybris77
told the doctor I broke my leg in two places. He told me to quit going to those places. On Wed, Apr 15, 2009 at 15:06, hybris77 dist...@yahoo.com wrote: anyone. Please look at the following example, useless code since it's just grabbing, html and putting it back again but I need to do

[jQuery] Re: how can I add to different elements inside a jQuery object?

2009-04-15 Thread hybris77
thanks for the advice sometimes thought it seems all things possible is not to be found SO easily on the jQuery documentation pages nice one On 15 Apr, 11:32, Donny Kurnia donnykur...@gmail.com wrote: hybris77 wrote: ponder something like this: var elements = $( '#template_elements

[jQuery] how to create multiple draggable div's with dynamic content

2009-04-14 Thread hybris77
hi, I'm trying to acchieve something for a few days now and I need som guidence I need to be able to open a draggabel div, that's no worry using the jQuery UI plugin what im not getting my head around is how to create multiple instances of this window with dynamic content but with a templade

[jQuery] Re: how to create multiple draggable div's with dynamic content

2009-04-14 Thread hybris77
ways you could make this thing work. I found an interesting javascript templating plugin called jBind that makes it easy to pull markup from the dom and fill in variables. It's a lot nicer than concatenating strings, but a lot slower. On Apr 14, 4:43 am, hybris77 dist...@yahoo.com wrote: hi

[jQuery] problems with dynamic click event... how do I get the index in there ?

2009-03-20 Thread hybris77
hi folks, if anyone could direct me in the right direction here I'd be very happy what's wrong here : $( calculationsArray ).each(function(){ var index = $( calculationsArray ).index(this); $( .calculations_list ).append( li class='calculations_menu_list'+ (index+1)+/li)

[jQuery] Re: Rotating CSS classes each 5 sec

2009-03-20 Thread hybris77
if that is all you want to do using jQuery or pure javascript then look at how to use setInterval ... that can be defined to run a function at sertain intervals. check this one out also

[jQuery] should I create a javascript class for this project ?

2009-03-17 Thread hybris77
hi anyone and everyone, much respect to the active members on this forum that helped me several times learning to utilize jQuery in my work In my current project I am asking myself if I should create a class to handle what I want to do... here it is: - on my page I want to be able to look at

[jQuery] can I capture highlighted text?

2009-03-06 Thread hybris77
is there any way of, using jquery preferably, catching text that is highlighted by the user ?

[jQuery] Re: jQuery Help Please

2009-03-06 Thread hybris77
it can be done, anything you can think of is possible, to certain extents of course my suggestion is looking into the tutorials on the jquery website or get someone who knows to give you a beginners class good luck

[jQuery] problems extracting links and redirecting to function

2009-02-28 Thread hybris77
can anyone please see waht's wrong with this I want to get all a tags in the div #wiki_content and get the text from it and send into a function called searchDelay... im not getting as far as jumping into the $.each loop so not sure waht's wrong var links = $( #wiki_content a );

[jQuery] Re: problems extracting links and redirecting to function

2009-02-28 Thread hybris77
implicit   iteration: $( #wiki_content a ).click(function(event) {    event.preventDefault();    var link = $(this).text();    searchDelay( link ); }); --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Feb 28, 2009, at 10:50 AM, hybris77 wrote: can

[jQuery] Re: problems extracting links and redirecting to function

2009-02-28 Thread hybris77
: $( #wiki_content a ).live('click', function(event) {    event.preventDefault();    var link = $(this).text();    searchDelay( link ); }); --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Feb 28, 2009, at 11:35 AM, hybris77 wrote: thanks for the feedback

[jQuery] Re: whether the structure of the jQuery object like this

2009-02-22 Thread hybris77
what is it that you want to achieve my friend ? maybe I can help On 22 Feb, 08:44, 浩翔 blackange...@gmail.com wrote: Anybody ? On Feb 22, 4:04 am, Alex blackange...@gmail.com wrote: whether the structure of the jQuery object like this : $('p') if the tag p only one, the structure

[jQuery] getting javascript code instead of node value

2009-02-22 Thread hybris77
hi, when I run this I am getting a response from the page I request xml from but the problem is in that I fail extracting the text from the xml tags, what am I doing wrong here? anyone? $.get( search_wiki.php?keyword=+searchString, function(xmlData){

[jQuery] problems getting HREF attribute in click event

2009-02-22 Thread hybris77
can anyone help me to get the href attribute to send off with the function in this code please $(Item, xmlData).each(function(){ var title = $(this).find( Text ).text(); var url = $(this).find( Url ).text();

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread hybris77
to the a as a descendant of $(this) instead On Feb 22, 9:34 pm, hybris77 dist...@yahoo.com wrote: can anyone help me to get the href attribute to send off with the function in this code please $(Item, xmlData).each(function(){                                 var title = $(this).find( Text

[jQuery] Re: problems getting HREF attribute in click event

2009-02-22 Thread hybris77
I O U 1 mate that seems to have solved two problems in one go, thought that maybe both might do that same in the end but your final solution is more correct, before I was getting multiple answers somehow, now I get what I want, nice one On 22 Feb, 22:45, Frederik Ring frederik.r...@gmail.com