[jQuery] jqModal hash undefined

2009-05-20 Thread rayfidelity
Hi, I'm having problems with hash $("a.iwmodal").live("click",function(event){ event.preventDefault(); var target = $("#infowindow"); target.jqm({ ajax: $(this).attr("href"), trigger: $(this),

[jQuery] Re: Show hide and print

2009-03-04 Thread rayfidelity
ne". > > Here's an Oldie-but-Goodie guide to creating a nice > one:http://www.alistapart.com/articles/goingtoprint/ > > HTH, > SEAN Ohttp://www.sean-o.comhttp://twitter.com/seanodotcom > > > > rayfidelity wrote: > > > Hi, > > > I have a pr

[jQuery] Show hide and print

2009-03-04 Thread rayfidelity
Hi, I have a problem, I have an element which I show (let's say fadein ("slow")) on certain action (it's set on display:none in CSS). The problem is that i want to print that page without that element...how can i do that... fadein, show,... all set the element on display:block which means the el

[jQuery] animate problem

2008-07-16 Thread rayfidelity
Hi, I'm currently using: $("#msg").empty().prepend('It works!').show("slow").animate({opacity: 1.0}, 5000).fadeOut("slow"); But the problem is, that it's still showing (for the specified 5000ms) after i invoke new action which should display something different than "It works!" instead waiting

[jQuery] flashing/blinking effect

2008-04-08 Thread rayfidelity
Hi, i want to create flashing/blinking effect but i'm having trouble with it. I know that the core effects are very limited...but still... i managed to create something to my liking with $ (".element").css({backgroundColor:"#ff"}).fadeOut("slow") but if i want it to just flash and not disap

[jQuery] Re: jQModal reload..how?

2008-04-08 Thread rayfidelity
Anyone? is it possible at all? On Apr 8, 11:08 am, rayfidelity <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible to reload the contents of a modal (jQModal) window > without closing and opening it again? The content is loaded via get > (default) i want the modal window t

[jQuery] jQModal reload..how?

2008-04-08 Thread rayfidelity
Hi, Is it possible to reload the contents of a modal (jQModal) window without closing and opening it again? The content is loaded via get (default) i want the modal window to reload the same url... Thanks, BR

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread rayfidelity
PROTECTED]> wrote: > > > Thanks! > > > On Mon, Feb 25, 2008 at 4:18 PM, rayfidelity <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > Does anyone have a solution? the toggle part works fine it just > > > disables all my links in the table... >

[jQuery] toggle disables links - unwanted

2008-02-25 Thread rayfidelity
Hi, Does anyone have a solution? the toggle part works fine it just disables all my links in the table... On Feb 24, 11:10 pm, rayfidelity <[EMAIL PROTECTED]> wrote: > Hi, > > I have a problem with mytogglefunction...it disables all the links > in thetr(when i click on the li

[jQuery] tr background toggle

2008-02-24 Thread rayfidelity
Hi, I have a problem with my toggle function...it disables all the links in the tr (when i click on the link it just changes the color of the tr)...How do i fix it? $(".table_data tr").toggle( function(){ $(this).css("background-color","#FE

[jQuery] Re: jqmodal nested ajax

2008-02-22 Thread rayfidelity
ong? > > Tom > > On Feb 22, 1:07 pm, rayfidelity <[EMAIL PROTECTED]> wrote: > > > Hi, > > > Is it possible?? the plugin page doesn't have an example of this...Or > > is it at least possible to replace the current modal content with > > another ajax content in the opened modal (only one modal...not > > nested)...How? > > > Thanks! > > > BR

[jQuery] jqmodal nested ajax

2008-02-22 Thread rayfidelity
Hi, Is it possible?? the plugin page doesn't have an example of this...Or is it at least possible to replace the current modal content with another ajax content in the opened modal (only one modal...not nested)...How? Thanks! BR

[jQuery] simplemodal and datepicker

2008-01-30 Thread rayfidelity
Hi, I want to enable datepicker in the modal window that opens...datepicker works fine for itself but i cannot get it to work in modal. Any ideas? Modal window is loaded through ajax...

[jQuery] Re: filter selects and get value...how?

2008-01-21 Thread rayfidelity
rray of selects? So multiple selects, but > only one has a value at any one time? Or do you have a multi-selection > select and hence you're trying to find the _options_ that are > selected? > > On Jan 22, 11:43 am,rayfidelity<[EMAIL PROTECTED]> wrote: > > > Hi, >

[jQuery] filter selects and get value...how?

2008-01-21 Thread rayfidelity
Hi, I have array of selects, and i filter them with: $inputs.filter("[name='qty[]']"). I want to get selected value. But i don't know how... I tried with: $inputs.filter("[name='qty[]']").filter("select option:selected").val(); $inputs.filter(function(){"[name='qty[]']" && "select option:select

[jQuery] reset cloned

2008-01-21 Thread rayfidelity
Hi, Is there an easy way to reset the cloned input fields (text and select) after they're cloned (preserving the parents value)? Thanks

[jQuery] remove tr

2007-11-22 Thread rayfidelity
Hi, I have a cloned row(s) and a function to remove selected cloned row function remove_row(){ $('a.remove').click(function(){ $(this).parents("tr").remove(); }); } the problem is that i have to click twice on the link before anything happens (deletes row) and i

[jQuery] Re: each help

2007-11-18 Thread rayfidelity
val(); > var qty = $inputs.filter("[name='qty[]']").val(); > $inputs.filter("[name='row_sum[]']").val( price * qty ) > }); > > } > > Ariel Flesler > > On Nov 15, 7:51 pm, rayfidelity <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Select change event on item 1 not firing

2007-11-17 Thread rayfidelity
Try $('#residentsSelect').change(function(){ document.location.href=$("#residentsSelect [EMAIL PROTECTED]").val(); return false; }); On Nov 16, 5:48 pm, II <[EMAIL PROTECTED]> wrote: > Hello, > > I have the following http://richmondshire.riverprojex.com/page the > select boxes

[jQuery] each help

2007-11-15 Thread rayfidelity
Hi, I have this in each row (a couple of rows...) i'd like to calculate the data function test(){ $("[EMAIL PROTECTED]").each(function(i){ var price = $("[EMAIL PROTECTED]'price[]']").val(); var qty = $("[EMAIL PROTECTED]'qty[]']").val(); res = price * qty; $(

[jQuery] row clone and calculation

2007-11-14 Thread rayfidelity
Hi, I have a table with input fields (array of them)...i can add new rows through clone...the problem is that i would like to calculate the numbers in the fields and display the sum at the end (both row sum and final sum) and i don't know how. Here's what i got: function calc(){ var pri

[jQuery] auto scrool

2007-08-23 Thread rayfidelity
Hi, I have to find a solution for auto scroll. I'm thinking of an iframe and a script which would scroll a page without user interaction. When it would reach the end of the document (page) it would start again from the top (or go backwards up). Has anyone found something similar? Thanks! BR

[jQuery] Re: Sortables (interface plugin)

2007-07-24 Thread rayfidelity
m on the > LIs) at the moment you want to begin sorting its children (I've done it with > a context menu, can be accomplished by other means - perhaps > draggable.onStart). Then destroy the sortable when sorting in that list is > done. This way only one list is sortable at

[jQuery] Sortables (interface plugin)

2007-07-23 Thread rayfidelity
Hello, I have a nested list and i'd like to lock the sortable option to the each level (so that it wouldn't be possible to drag the selected element to the another level). I was looking at the documentation on the interface plugin site (http://interface.eyecon.ro/docs/sort) but i didn't find suc

[jQuery] Re: form plugin

2007-07-03 Thread rayfidelity
Thanks!!! On Jul 3, 4:46 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > rayfidelity, > > The form plugin lets you do whatever you need to do with the result. > What type of response are you getting and what do you want to do with > it? The success handler you poi

[jQuery] form plugin

2007-07-02 Thread rayfidelity
Hi, I have a question about the form plugin. I'd like to reuse the data, that's returned from the submited form. The form posts to the process.php, and the the process.php returns the msg. In stead of just displaying the returned data i'd like to check what it is. Why? Because i'm validating the

[jQuery] Is there a way...

2007-06-29 Thread rayfidelity
i don't know how to explain. It's like this ... When i click on the link, i call jquery ajax and do something. Can jquery change the img (so that it would give response from ajax) even though the images are the same and they are all in the same class? Or do i have to assign a unique class to

[jQuery] Re: Radio button

2007-06-21 Thread rayfidelity
Nope. Eh too much. I'll stick to marking just the radio button. I've already taken too much of your time. Thank you very much! On Jun 21, 7:53 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > rayfidelity wrote: > > Hmm the removeclass part doesn't seem to work, when

[jQuery] Re: Radio button

2007-06-21 Thread rayfidelity
Thanks Klaus! I owe you a beer ;) On Jun 21, 7:27 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > rayfidelity wrote: > > Klaus thanks it works! > > > Since you made a great suggestion, here's the thing > > > it's like this > > > > >

[jQuery] Re: Radio button

2007-06-21 Thread rayfidelity
Hmm the removeclass part doesn't seem to work, when i click on the other radio button the previous stays red... On Jun 21, 7:27 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > rayfidelity wrote: > > Klaus thanks it works! > > > Since you made a great suggestion, her

[jQuery] Re: Radio button

2007-06-21 Thread rayfidelity
Klaus thanks it works! Since you made a great suggestion, here's the thing it's like this bla bla bla bla 2 i'd actually like to change the background of the list item, so how do i append the class to the appropriate list item? On Jun 21, 6:47 pm, Klaus Hartl <[EMAIL PROTECTED

[jQuery] Re: Radio button

2007-06-21 Thread rayfidelity
Thanks but it doesn't work. On Jun 21, 6:39 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > This should work: > > $(document).ready(function() { > $("[EMAIL PROTECTED]'section']").click(function(){ > $(this).css('background', this.checked ? 'red' : ''); > }) > > }); > > Here's what

[jQuery] Radio button

2007-06-21 Thread rayfidelity
Hi, I have a problem, i'd like to mark the radio button that's checked. Here's what i came up with, but it doesn't work. $(document).ready(function() { $("[EMAIL PROTECTED]'section']").click(function(){ $("[EMAIL PROTECTED]'section']:checked").val() == 1 ? $ ("[EMAIL PROTECTED]'section']:checked