> it is about jQuery media plugin (http://malsup.com/jquery/media/
> misc.html)
>
> Can I use
>
> http://www.google.co.in";>
>
> This to load EXTERNAL DOMAIN html page in an iframe that media plugin
> I create.
Yes, this should work. The media plugin just creates an iframe for
this content.
$('#slideshow').cycle({
fx: 'fade,cover'
});
On Feb 1, 8:14 pm, Florushj wrote:
> I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately
> I'm no jQuery hero :-(
>
> This is what I want in short:
> It's basically this
> example:http://www.malsup.com/jquery/cycle/pager-do
The error I see is on this line:
setTimeout('chatHeartbeat();',chatHeartbeatTime);
Instead of passing a string as the first arg to setTimeout, pass the
actual fn reference:
setTimeout(chatHeartbeat, chatHeartbeatTime);
When passing a string it will be evaluated in the global context. But
your
> I have a form in which one of the submit buttons initiates a download
> of a file. Under normal circumstances this works perfectly, however,
> if I introduce the JQuery Form plugin as follows:
>
> var options = { target: "#dialog" };
> $('#viewform').ajaxForm(options);
Try setting
> So if someone has a second, can you let me know if the above code
> could potentially get out of sync? Maybe when I create the list item
You don't need to use both the success and complete fn. You can use
complete like this:
complete: function(xhr, status) {
if (status == "success") {
> success:function (data,xhr) {}
The above callback signature applies to jQuery v1.4. In prior
versions the xhr was not passed to the success callback (but is passed
to complete callback).
Use Firebug to see what data is actually being posted to the server.
> in update_homepage.php i save data to mysqldb.
>
> But if i click to submit buton, i see in OK
> echo from update_homepage.php, but in db is only first (Nadpis) field
> of form. And (!!!) if i click to this button second time
the_ID: LID,
remove the comma.
On Jan 9, 11:09 am, youradds wrote:
> If anyone has IE 6 or 7, please test this URL:
>
> http://ultradev.com.nmsrv.com/cgi-bin/dev/page.cgi?g=Detailed%2F337.html
>
> I'm wonderig if this is an issue with IETester (what I use to test
> different versions of IE) .
> take a look at jqGrid
>
> http://www.trirand.com/blog/
jqGrid rocks!!
> I was curious if there was a way to hit the current xhr object in the
> success callback. I've been tinkering with it, and have been unable
> to figure out how to do that.
No, but you can access the xhr in the 'complete' callback.
> Figured it out. The problem is, in fact, with the easing. Cycle has a default
> easing set, but setting it to 'linear' fixes it and makes the entire thing
> smooth.
Hmm, nice.
> Hey, I'm using the JQuery cycle plugin (http://malsup.com/jquery/cycle/) and
> I have images set to auto-scroll horizontally. The plugin automatically
> eases the slides (I've tried turning easing off), and I'm wondering if
> anyone knows of a way to get them to just continually move horizontally
> None of those are redundant, but three tips:
Actually all of the individual jquery UI files are redundant with
jquery.ui-1.7.2.custom.min.js if that download was configured
properly. Try with just these three: jquery-1.3.2.js,
jquery.bgiframe.js, jquery.ui-1.7.2.custom.min.js
> Hi all,
> in this plug-in I need a function like onUnblock but on completed
> fadein..
> can Add this function?
ok.
http://www.malsup.com/jquery/block/#download
What you have there should be working. Perhaps the json response is
not properly formatting. Try adding an error callback, or using the
global ajaxError hook, and see if that's the problem.
Mike
On Jan 5, 8:20 pm, Scott Brady wrote:
> I'm having an issue using the jquery form plug-in. The for
> Thanks for any help on this.
.slideshow li {
width: 100% !important
}
Two pagers, one slideshow:
http://jquery.malsup.com/cycle/pager-two.html
Mike
On Dec 24, 8:54 am, pmAgony wrote:
> Update, I was able to successfully complete #2 and #3. My challenge
> right now is being able to get two synchronized pagers on the same
> cycle.
>
> If anyone can chime in to ass
tuff, I'm a php guy, so maybe it
> is me!
>
> Thanks
>
> 2009/12/23 Mike Alsup :
>
>
>
> > Most likely you have a JavaScript error somewhere that is preventing
> > your scripts from running. Post a link if you can.
Most likely you have a JavaScript error somewhere that is preventing
your scripts from running. Post a link if you can.
On Dec 22, 8:15 pm, Peter Laws wrote:
> But thats after the (test) alert box, and I'm not even getting that
> popping up. Surely I should be seeing the alert on submit?
>
> 2
Set a breakpoint in jQuery's httpData function and see why it's
failing.
Mike
On Dec 22, 8:11 pm, dirknibleck wrote:
> I have what I think is a pretty basic function going on that fails in
> IE everytime. The code is below. The javascript is first, followed by
> the ajax response.
>
> In IE,
> next:'#next', next:'#next2'
Change that to:
next: '#next,#pics'
The 'next' option let's you specify a jQuery selector string. So you
can have as many elements as you want trigger the transition to the
next slide.
Mike
> I use this jquery-plugin:http://jquery.malsup.com/cycle/
> Each li-tag gets a calculated width allowing the contents to 2 lines,
> but line 1 is sufficient. 2 lines breaks the design. The added width
> is not necessary. Is it possible NOT to add to this? Can anyone help
> me? It would be a great
> If there are three slideshows on one page, is there a way to PAUSE
> slideshows B & C when hovering over A?
var $slideshows = $('#A,#B,#C').cycle({
// options
speed: 700,
timeout: 3000
});
$slideshows.hover(
function() { $slideshows('pause'); },
function() { $slides
View the markup after the postback (use firebug). I can almost
guarantee there are extra elements in the slideshow container, perhaps
s or empty paragraphs or something. Post a link if you can.
Mike
On Dec 7, 11:31 pm, Michael wrote:
> Anyone have an ideas or advice?
>
> Mike
>
> On Dec 1, 9:
> I am using BlockUI in a pop-up to block it while the new data inserted
> by the user is updated.
>
> It works pretty good in firefox but IE7 has a strange behaviour: after
> pushing the submit button the overlay message is displayed and the pop-
> up is closed (until here everything is fine) but
> Shouldn't the code be
> $(el).removeData('blockUI.history');
> ?
Yes, good catch.
You can do this with blockUI if what you're planning to display is
reasonably succinct. When you have the database results in your ajax
callback, assuming it is HTML, you can do something like this:
$.get(someUrl, function(data) {
var html = '' + data + 'OK';
$.blockUI({ message: html });
I was a designer before dabbling in development. I still have a
> > lot to learn.
>
> > Thanks again!
>
> > On Nov 21, 10:58 pm, Wroathe wrote:
>
> > > I'll give that try and see how it works - thanks in advance for the
> > > reply. I really ap
Try using the 'after' callback:
$(function() {
$('div#slides').cycle({
timeout: 7000,
pause: 1,
pager: 'div#buttons',
pagerAnchorBuilder: function(idx) {
return '' + idx + '';
},
after: function(curr, next, opts) {
var alt
Try something like this:
$(document).ready(function() {
var $slideshow = $('#slideshow');
$slideshow.cycle({
fx: 'fade'
}).cycle('pause');
$slideshow.hover(function() {
$slideshow.cycle('resume');
},
function() {
If you don't want a wait cursor then just set the css cursor prop:
$.blockUI({
css: { cursor: 'default' }
});
Mike
On Nov 17, 4:05 am, "Jonathan Vanherpe (T & T NV)"
wrote:
> I don't see a busy cursor in Ubuntu, but I do see it in Win 7 and win XP
> (on pretty much any browser). The exampl
> When using the cycle plugin to display a slideshow in IE(6/?), it
> won't start playing until all of the images have completely loaded.
> This causes a delay of 5-15 seconds depending on the size and quantity
> of images. There's no such problem with non-IE web browsers, however,
> all of which s
On Nov 11, 1:56 pm, Rathric wrote:
> I have a question about drop down options with html/jscript/Asp.net
> and ajax/jquery/. When the user populates the form and submits, the
> output is written to memory and sent to an email address. What I have
> noticed is that the output is only showing th
> Hi, I have the cycle plugin setup so a series of thumbnails of the
> image switch the bigger image upon mouseover. Much like this
> example...http://www.malsup.com/jquery/cycle/pager6.html
> except mine works by hovering over the thumbs like:
>
> .cycle({
> fx: 'fade',
> spee
> I want that 10 minutes of my life back... :\
Ha ha. Love it!
> 1. I set: display: none to all divs that I want to present in BlockUI,
> which is obvious - because I don't want these divs to be shown in
> normal page flow. What is not obvious and strange is that BlockUI does
> not un-hide such hidden elements when displaying them.
>
> I have to use for exampl
Can you post a link to this page, or a similar example page?
On Nov 1, 6:00 pm, Jim Byrnes wrote:
> I am new to jQuery and really new to the form plugin so I must be
> missing something simple but I can't figure out what is wrong.
>
> I have this form:
>
>
> Print Items Due Report
>
> I am using jquery cycle to make a book presentation. Right now there
> is click-advance and also buttons for next and previous images.
> But what I want is to also have buttons to go to certain pages only,
> e.g. first page, chapter 1, last page.
> What I've found so far is only the possibility t
> is it possible to have blockUI block the entire page, but call it from
> within an iframe on that page?
>
> I don't see any parameters to pass an element or document? i know i
> can get access to the parent frame with jQuery
> ('body',parent.document), but wanted to use blockUI from within the
>
> $('#formid>input').each(function(){
> if($(this).attr('id')!='') alert($(this).attr('value'); //fetch id if
> not blank ang show value
>
> });
>
> the code inside this function does not run if the form is rendered
> this way:
>
>
>
>
>
>
>
>
> but if it is rend
> I thought it was that simple...
> So I should generate my json via a server-language (like php) and echo
> that callback as in the post you refered?
> I'll try that and keep you posted.
Yes. Something like:
> the json file named "myjson.json" (I've reduced its contents to its
> minimum for testing purposes and it validates in JSONLint):
> {"result": "true"}
>
> The javascript:
> $.getJSON('http://site1:/myjson.json', {}, function(data) { alert
> (data.result); })
>
> I'm testing it in a local ser
> In regards to the 9/9/9 release; it seems like the fxFn is set to null
> in the resetState function and not being set back. I am invoking the
> script with:
>
> $(document).ready( function() {jQuery
> ('#cf73b7c6341940210VgnVCM10288ea8c0').cycle({
> pagerEvent: 'mouseover',
> timeout: 45
Image demo:
http://jquery.malsup.com/corner/image.html
On Oct 21, 12:34 pm, Dave Methvin wrote:
> Right, you can't "corner" an img element because the img element can't
> have children. Put the img in a div and round that. Better yet, create
> the img src with rounded transparent corners!
> Yes, it is on a different domain (which is why jsonp is being used). What
> strategy would you suggest for me to be able to specify headers? It's a
> must-have for my application.
You can't. Are you saying you're trying to access a jsonp service
that requires specific request headers on the GE
>
> Hope that helps.
>
> --Karl
Bah, this is getting entirely too civil. Snooze... :-)
> The alert below never occurs (and a breakpoint is never hit if I put
> it there), but I can see that the ajax request is being sent.
>
> j$.ajax({
> 'url': serviceUrl,
> dataType: "jsonp",
> data: params,
>
> I've had this issue before. As Karl suggests, I was able to fix it by
> giving the parent element (the one calling the cycle plugin) a fixed
> height (the height of the images you're cycling) and an overflow of
> hidden in the CSS. If the slides are of different heights, set the
> height to the
Slideshows work best when you declare the image sizes using the height
and width attrs. When the images are cached it's not a problem
because the browser knows the dimensions of the image, but if the
images are not cached there is a reasonable chance that your slideshow
will start before the imag
> How would I extend blockUI to have a function callback for when the
> queue is empty? I want to use something like this in a project where
> I have several queued ajax requests, but I only want to call blockUI
> on the first request and unblockUI when the queue is empty.
You can use the ajaxSt
A better way to approach this is to wrap the images in divs and then
cycle the divs. You can then count on it working correctly for all
the transition effects.
http://jquery.malsup.com/cycle2/center-horz.html
Mike
On Oct 17, 4:25 pm, David Collins wrote:
> I didn't see this as an option, so
> the cycle site is down since yesterday, i get a 403 and 404 error, ???
Hosting problems. Content is temporarily available here:
http://www.malsup.com/jquery/cycle2/
Mike
"There's a demo for that".
http://jquery.malsup.com/cycle/count2.html
On Oct 14, 11:48 am, northbeach wrote:
> I have worked out how to use the Next and Prev example here
> :http://malsup.com/jquery/cycle/int2.html
>
> and the count example here:http://www.malsup.com/jquery/cycle/count.html
I'm enjoying this thread. :-)
On Oct 14, 2:04 pm, Karl Swedberg wrote:
> > Wow, easy there Karl. I was just showing you working examples of the
> > issue I was experiencing.
>
> easy there? I was just trying to help. You showed examples that didn't
> include my suggestions, after we had alr
That page is not using the Form plugin; it appears to be using Jörn's
Validation plugin. Also, I'm not seeing the problem you described.
When I check the box and submit the form the next page is loaded.
Mike
On Oct 13, 1:16 am, Laire wrote:
> Hello,
> I try to use the malsup form Plugin.
>
>
> Hey all -- I've built a site that has two divs with variable content
> (eventually this will become 3, but I assume it will scale up to that
> with no major issues). I'd like to be able to change content with each
> of them using the same pager.
Here's an example of how to do this:
http://www.
Remove the comma at the end of this line:
prev: '#prev' ,
trailing commas at the end of an array are not allowed in IE 6/7.
Also, next time please post a link instead of all your markup if
possible.
Cheers!
Mike
On Oct 9, 4:45 am, First Impression
wrote:
> Hi,
>
> I am currently develo
> I don't have time to put a real test-case together right now, but just
> on the off chance that someone's experienced the same class of
> problem:
>
> I'm using jquerycyclelite (http://malsup.com/jquery/cycle/lite/) to
> animate a set of linked images. An ancestor element has padding, but
> the
> it'll just keep creating new elements in the DOM. So I was wondering
> if there's a way to remove elements from the slideshow while it's
> running?
No, there is no direct support for that in the plugin, short of
stopping, manipulating and restarting the slideshow.
> An additional question I have for sake of completeness
>
> Will empty(), remove() unbind just child element events (1 level down)
> or events for ALL descendants?
All descendants.
> and yes, the paths are right. I still get this error in firebug no matter
> what:
>
> $ is not defined
Must be more to it than that. Can you post a link to your page?
> Sure, here it is. Thank you!
>
> http://test.nmrwiki.org/wiki/index.php?title=Special:People&command=/...
>
Ok, so here is the source for one of your forms:
Administrator (1)
That is not valid markup. If you look at Firebug you will
> I don't see how maxentries as parameter is need in this code
>
> jQuery.fn.pagination = function(maxentries, opts)
>
> in some plugins, i see everything works fine with just something like
> this
>
> jQuery.fn.pluginname = function(opts)
It all depends on how the author wrote the plugin. If t
> Effectively after uploading file we can't see any response in firebug.
> (You can see an example in the official website of jquery form
> pluginhttp://malsup.com/jquery/form/#code-samples)
You won't see the response from a file upload displayed on the Firebug
console tab because that request
> Try taking a look at the wonderful cycle plugin of Mike Alsup:
>http://malsup.com/jquery/cycle/options.html
Thanks for the comment. Here's another page to look at that shows the
variety of effects available:
http://www.malsup.com/jquery/cycle/multi.html
> I think this is a known limitation of jsonp as a technique, not a bug
> with jquery itself. Jsonp works by appending a script tag to the DOM,
> whose "src" attribute points to the URL you specify. The URL is
> expected to wrap a json object in a function call to the function you
> specify, and t
> I have a bunch of ajax events that are fired one after an other to fill
> different spots on the page. Hence it's important that I know which dom
> element each on of the resulting data is supposed to belong to.
>
> I was wondering if there is a way I can pass the id of each element into the
> c
> I've used $(#myform).ajaxForm(options)
> method to make the form submittable with ajax.
>
> the problem is that no matter what button I click the
> form data is the same and element is not
> included
> into the form data, as if it were not a "successul control".
>
> so at this point form doesn'
This isn't supported directly by the plugin. The only thing I can
think of is using a dynamic timeout and setting it to 1 for that
slide. I have a hunch it won't work terribly well though.
Mike
On Oct 1, 10:00 am, Garrison Locke wrote:
> Does anyone know how to disable a slide or skip one bas
Like the previous spam message, that also was not sent by me. I'm
taking action to correct this from happening again. Thanks for your
patience.
Mike
> Hello,
>
> I just want to tell you about my new method for earning money online, it is
> so simple and easy, and you can check it here:
Sigh.. this message was *not* sent by me. And I've just changed my
Google password so hopefully it won't happen again.
Mike
On Sep 30, 6:24 am, "mal...@gmail.com" wrote:
> hot sexy banned movie
> I am currently using the .after to insert html code into the website.
> In the html code I am passing it I have div's with id's and classes.
> I have other jquery functions which look for those id's and classes to
> perform actions when the mouse moves over it, but it does not perform
> the acti
> I'm having a similar issue with the media plugin and Safari. According
> to Safari's plugin list, mime type "video/quicktime" is limited to the
> file types: mov,qt,mqv. This of course means that if you try and
> publish an mp4 file, or if you would remap mp3 to play with Quicktime
> instead of
> Please consider the code below, supposed to check all child checkboxes
> wjen a parent checkbox has been checked.
>
> //parentCheckbox and childCheckboxes are two variables set earlier.
> //Here are typical values they produce once alert()
> //I reproduce the exact string outputed when alert() :
> I have tried adding to both the overlayCSS and css overrides a cursor
> of 'default' but it doesn't seem to do anything.
http://www.malsup.com/jquery/block/sep26.html
On Sep 25, 8:17 pm, "Rick Faircloth" wrote:
> I include a reference to a file with this jQuery code in every page to solve
> that problem, Dave.
>
> Best solution I've found so far. I got it from someone, somewhere, but don't
> remember who.
http://www.malsup.com/jquery/fadetest.html
> My ideal solution would be a list of song titles and a play button.
> When the user clicks the play button, the quicktime play is revealed
> below the title and ONLY at that moment does the file start
> downloading.
If you are using the media plugin then just invoke "media" on the
desired eleme
> > Yes, same problem I posted yesterday... funny we both hit it this
> > week. hopefully someone can help?? I know the author of blockUI
> > says he monitors this forum...
Hmm, anyone have any ideas for how to force IE to honor the new cursor
style without having to move the mouse? One that
> Yes, same problem I posted yesterday... funny we both hit it this
> week. hopefully someone can help?? I know the author of blockUI
> says he monitors this forum...
Will take a look at this tonight. Thanks for the reminder.
Mike
> Can someone post a simple example of creating a tabbed UI with JQUERY?
For fully styled tabs you could use jQuery UI:
http://docs.jquery.com/UI/Tabs
> the expressInstaller parameter is null by default in jquery media.
> However, adding the expressinstall.swf as I did above doesn't seem to
> work.
>
> What do I need to do to my mark-up or javascript to get flash
> detection and prompt for installation working when flash isn't
> installed?
Set
> $("").appendTo("body");
> First div html markup above is not 100% ok, and this kind of html is
> deliberately not going to be handled properly by jQuery.
Ouch. Deliberately not handled properly? That is certainly not
true. jQuery itself uses this very syntax.
Phaedra, how are you identifyin
> Hi Mike:
>
> Finally I changed the calls to asynchronous.
> It looks good now.
The web thanks you.
> How do I pass a variable as a key in a key/value pair in Ajax?
> For example, this does NOT work:
>
> function DoAjaxCall(columnname, value) {
> $.post(_callerquery, {
> columnname: value
> }, function(data, textStatus) {
> alert(data+ ' '+ textStatus);
>
> I am playing with malsup's corners and I am getting strange nudges on
> both top corners in Opera, IE6 and Konquerer when applied to nested
> elements (to achieve a cornered border). I am using exactly the same
> code as on the demo page: "$(this).corner("round 8px").parent().css
> ('padding', '
> I can hardly "split my processing into smaller chunks"
I'm sure that's not true. If your script is running so long that it
causes the warning dialog to display then you must refactor it.
> For pages with a lot of text (and other content) I would like to have
> the possibility to hide and show parts of the page with 'buttons'. I
> have come a long way, but have some problems. I made a page to show
> them:
> http://www.decebal.nl/testing.html
>
> I have come a long way and for t
On Sep 18, 9:31 pm, Catherine wrote:
> Same as subject
>
> I'm having trouble using it with jQuery 1.3.2.
> Please advice.
What trouble are you having? You need to provide some details.
> I downloaded the plugin from plugins.jquery.com
>
> The available release there is 2.14.
>
> Hence the confusion and wasted effort :(
>
> Thank you for the plugin. Upgraded it and it works fine.
Sorry about the wasted effort, Viraj. I thought I had updated that
page long ago, but apparently I
> I am using blockUI(2.14) in one of my projects.
>
> A few days back, I upgraded to IE8 and the site stopped working. On
> debugging, I found the issue to be in blockUI plugin.
>
> Apparently, the reason seems to be that the plugin uses dynamic
> functions like setExpression which are not support
Yes.
On Sep 17, 5:59 am, jeanluca wrote:
> does that also work in IE(6) ?
>
> > That did it. I was using success which did not provide access to the
> > xml as a string I could output, but complete works great. Thanks! Now
> > I cane easily get the text, the HTTP Response code.
>
> > > Try hooki
> I have a form that is repeated through out the page by the backend,
> which I have no control over.
>
>
> Cancel
>
>
> I want to attach an event to the link to clear the textarea.
> $(".comment_form_cancel").live("click", function(event) {
> $(".your_comment").val('');
> event
> I still can't find a solution to simply print out the XML response
> from an AJAX call. I'm surprised jQuery can't handle something that
> simple, as it can otherwise do so much.
>
> The other js libraries don't seem to have a problem with it, it looks
> like jQuery just isn't up to the task, an
> i don't know why this is not working but the later is working well
> please tell me what is wrong with this
>
> // not working
> SocialSite.Home.UserInfo =
> {
> options : {
> beforeSubmit: this.friendRequest,
> success: this.friendResponse
> },
> friendRequest : functi
> Given that, how would you allocate a timeout for say the first 3
> slides and then have the other slides all running at the default
> timeout?
Keep a counter and reference/update it in the timeoutFn. After 3
calls to the timeoutFn, return false thereafter.
Try adding style rules for the anchors - they are the actual slides in
your case:
#slideshow1 a { height: 463px; width: 841px; display: block; }
Mike
On Sep 15, 5:00 pm, kcory wrote:
> Hi,
>
> I've tried implementing jQuery cycle on my portfolio and it works in FF3 and
> Safari but not in IE.
> I have tested BlockUI Plugin but it does not start when I call it,
> because I can see with Firebub that the ajax calls are finished when
> BlockUI Plugin starts.
And that is exactly the problem with making synchronous calls to the
server - it locks the browser. I strongly recommend using
a
> How do I access my form object inside of the error callback?
>
> $('#foo').ajaxForm({
> error: function(){
> // where's my $('#foo') object here?
> }
> });
One way is like this:
$('form').ajaxForm({
beforeSerialize: function($form, opts) {
opts.$form = $form;
},
error:
> I have a form that I submit using the ajaxForm plugin.
> I have 2 file fields: thumb and .swf
>
> The iframe option is set to true and the form uploads ok the images
> but does nothing with the .swf file and I have no idea why is this
> happening
>
> Is there some filesize limitation to the plu
> When you first visit the page, firefox fails to render the images
> correctly with the first overflowing it's container and the rest
> appearing as squashed thumbnails. When you refresh the page (but not
> shift+refresh) it all works fine.
> Seehttp://www.thecathedraldeli.com/beta.html
> for
1 - 100 of 1739 matches
Mail list logo