I am looking for outlook style calendar plugin, specifically I want the calendar to be able to display daily, weekly, month views with scheduled events, and if user click on the event, it will link to another page or pop up a window or call some javascript.
Been having some trouble with this, I am trying to find a javascript or DHTML form field which is similar to the outlook web access email address fields which show an icon to identify the address, and the screen name of the address instead of the full email address, as a hyperlink. I was wanting to know if anyone knows of something like this already around or if I need to design my own.
I want to adjust the layout of the default lazy susan animation for this plugin. There are 5 slides. How would I need to adjust the JavaScript so that there are always 2 slides on the left and two slides on the right of the main slide that happens to be in focus? The shapes plugin offers a figure 8 shape that does this, but the animation style is not what the client wants.
Here's the URL with the working code. I've adjusted line 88 in the JS file, and it sort of gets me there: Code: var period = jQuery.roundabout_toFloat(180.0/ref.children(options.childSelector).length) //this is the original line var period = jQuery.roundabout_toFloat(360.0/ref.children(options.childSelector).length);
My understanding had been that $.css("width") would return the original user selected style, eg "100%" or "10em", and $.width() returned the computed width, always in "px". Not so, following the code through for .css(), it calls something called getComputedStyle and the only difference between the two functions turns out to be a post-fix of "px" on the .css() result - not very useful. I need to know whether my user has called me with a proportional dimension, or a fixed one. How to tell with jQuery?
This is probably quite a simple problem but I can't figure out the answer. I'm working on a site that has news stories and events coming in. What I would like is to have the news stories to be styled with squares and events with discs for instance. I might be able to change the actual plug-in so the CSS affects this change, but I just wondered how I could change the list-style-type with jQuery.
I'm trying to get my PHP scripts to email me an email which includes a button to enable a feature, which I'd like to be done via AJAX so the user can open the resulting page within their Outlook email rather than having to open a web browser.
My script is below, however I'm slightly confused, because when run in Outlook or outside the webserver directory it won't work, but run inside, it will. Can someone explain what I'm doing wrong? I may have seen somewhere about accessing XML on another server - is it that AJAX can't access files from a different URL? Code:
Is there any sort of javascript code that can be linked with a button, for example, that when clicked would start up an Outlook 2003 session (if the user has this installed)
Otherwise return a page or message alerting the user they do not have Outlook Installed
I am making a local intranet you see, and i have configured an internal email system, so on the Intranet site i want to add a link to go directly to Microsoft Oulook, which should be installed on all the machines.
i want to use some domain name lets say something like gmail or hotmail ,i Have created aweb page that contain the fields username ,password and display name with this fields in javascript and activex i want to create an account in outlook express .
if some body can help how would i access to outlook express and create an account with javascript or have link that can help or code to use ,i would be very grateful to him/her.
I have a piece of javascript that attaches a PDF document to an outlook form. However the PDF that I am pulling has a default name such as 'test' and I would like to change it to say 'client.pdf'. Is this possible in the script below?
var theApp = new ActiveXObject("Outlook.Application"); var theMailItem = theApp.CreateItem(0); theMailItem.to = "test@test.com" theMailItem.Subject = "test";
Has anyone tried sending web pages containing javascript to another user also using Outlook Express?
Mine don't work on the other end - although I'm not sure if this is because they don't have Javascript enabled in MS Explorer 6. I save the entire HTML file + script into my Stationery folder. Then I select Message/New Message Using [select stationery file]. Should it work? Say I sent this by email:
<html> <head> <script> alert("Hi there!"); </script> </head> <body> <p>Can you see the alert box? Let me know.</p> </body>
I have a website that uses AJAX to generate data in an html table. I want to copy/paste the entire page into MS word and have the conents of the page be displayed exactly like how it is in the browser.
When I do, I get script errors in each cell of the table. I believe it is some compatibiliy issue with AJAX and word. If I remove all the ajax functions from the website's code, the copy/paste would work.
Anyone know how to make ajax be compatible with MS word for copy/pasting?
Unfortunately I can not post any links to this website because it is an internal website at my work. I do not have a personal webserver so I can not link any screen shots. I will in the near future if this gets too complicated.
i have a html page which loose all text formatting and show white space between the table data cells. It works fine in the browser. Is there any way to fix it?
I'm creating a new email in javascript via outlook. When i try entering a line break " etc, Outlook just ignores it completely. I've tried using "%0D%0A" and "fromCharCode(10)" as well but it doesnt seem to read it as a line break. Is there any way to code it so that a line break or a carriage return appears on outlook?
I am facing one problem when i am trying to open the outlook express through javascript.Here i am able to open the outlook express with all the data, but when i press enter on any line of the body if the message, it moves 2 lines.make it to single spacing. The code i have used is given below.
I am trying to embed a calendar into my customers pages - the JS, CSS and jQuery are held on my server, so to allow my customers to just have to add one line of code, the link I give them, links to a JS file, which then dynamically loads the other files required, then adds a textbox, dropdown and button to the BOM, using document.write. However, to add the jQuery calendar to the textbox, I have to be sure jQuery has loaded. If it hasn't, by the time the page script hits the $( to check for jQuery, if it hasn't loaded, all of the jQuery is ignored. How can I get the script to stop and wait (without having the customer having to press a button)?
So I give my customers this one line: <script src="[URL]" language="javascript" type="text/javascript"></script>
The mt.js file contains... //JS to load files function loadjscssfile(filename, filetype) { if (filetype == "js") { //if filename is a external JavaScript file var fileref = document.createElement('script') fileref.setAttribute("type", "text/javascript") fileref.setAttribute("src", filename) }else if (filetype == "css") { //if filename is an external CSS file var fileref = document.createElement("link") fileref.setAttribute("rel", "stylesheet") fileref.setAttribute("type", "text/css") fileref.setAttribute("href", filename) } if (typeof fileref != "undefined") document.getElementsByTagName("head")[0].appendChild(fileref) } loadjscssfile("[URL]", "css"); loadjscssfile("[URL]", "js"); loadjscssfile("[URL]", "js"); //write GUI to DOM document.write("<input id="calendar" type="text" />"); document.write("<input id="btnCheck" type="button" value="Check" />"); document.write("<br /><div id="result" />"); //Jquery to add calendar to textbox added above $(function () { $("#calendar").datepicker({ showOn: "button", .... .... });
So if the jQuery/UI/CSS hasn't loaded, the script will get here, without having added the jQuery calendar to the textbox.