Online Text Formatting?

Mar 22, 2001

I'm currently working on an online content management system which allows users to edit html-pages without seeing the HTML-tags.

Is it possible to use buttons for text formatting? I would like to have buttons for adding a link and adding headers. But without showing the user the html-tags.

View 2 Replies


ADVERTISEMENT

SSI With Text Formatting

May 9, 2001

I have read about using a SSI to incorporate .txt files into your site.

Okay, I did that, but the Items do not word wrap i.e "<br>

How can I get each item in the .txt file to break after each is printed using a SSI??

*Details
-----------------
The .txt file is a listing of songs that get updated everyday and it is being put into a scroll area.
I work in Notepad (does it matter for creating .txt)?
-----------------

I need to know as soon as possible 'cause I want the site to go "Live".

View 1 Replies View Related

Text Formatting

Jul 8, 2002

I have a dollar amount that is calculated on the page based on amounts entered into textboxes.

The result tends to end up being something like 27.432

how do I round to 2 decimal places for output?

View 3 Replies View Related

How Do I Preserve The Text Formatting With IE?

May 31, 2007

I want to preserve how the text looks in the code. It's a <td>
element, so I styled it like this: td#textarea { white-space: pre; }

It's working in FF. But IE6 is getting rid of the first blank line of
my text. This line is necessary....

View 1 Replies View Related

Add Text Formatting To A Textarea?

Feb 28, 2009

I'm about to build a custom CMS using PHP, but I was hoping to add text formatting (bold, italic and maybe inline links) to a textarea in a secure admin section.

I was wondering whether it's possible to use Javascript to allow the user to highlight some text and click a button which will cause the script to write the appropriate HTML tags into the textarea.

By the way, I'm new to Javascript so be gentle.

View 7 Replies View Related

Text Formatting In Textareas?

May 31, 2009

Is it possible to have text formatting inside textareas? I mean, can you show parts of text in a textarea as bold, italic, underlined, or such? If so, how's that work?

View 4 Replies View Related

TEXT Formatting Using JAVASCRIPT

Jan 5, 2003

i am making a content manager, i want to be able to have the user format text with bold, italics, fontsize, color, etc within the text field window, kind of like the page here where we post topics and reply, any ideas where i can find any free scripts for this?

View 11 Replies View Related

Text Formatting In Random Javascript

Jul 23, 2005

I'm going through some "learning by doing" of javascript through trial
and error, and admittedly have a lot to learn. But in taking various
scripts and dissecting them, I still can't figure out if what I want to
do is possible, and that is this:

I'm trying to include a paragraph on my page that is randomly chosen
each time the page loads. This I can do. But in this paragraph I'm
trying to include varied text formatting (parts bold, parts different
color, etc), and make part of it a link.

If I use unformatted, un-linked text, it works fine, but that's not my
goal. When I try including html in the items from which to be selected
randomly, whether by directly specifying the attributes or using CSS
class references, nothing displays, which makes me wonder what of all
this is the problem.

View 1 Replies View Related

Retain Text Formatting From Web Page

Dec 1, 2006

Apologies for the almost duplicate post but thought this was much
clearer description of the issue than what I originally posted.

I'm trying to do simple integration with a third-party
web application. The app has an 'Action' button on all pages that
can be associate with a JS function. Our application is very
proficient at parsing text provided it is in some reasonably standard structure.

Is what we are trying to do is have a JS function that can be called
from any page in their system that will provide a reasonable representation
of the text on the screen. I need something close to document.body.innerText; the problem with this function is that it strips spacing from tables so we can't get consistent layout.

The consistent layout I am looking for would be the same as if you did
the following on any page:

1) Select all
2) Copy
3) Paste to notepad

Is there a function or process that will retrieve all text and retain
formatting?

View 2 Replies View Related

Formatting Text Within A Script.js File?

Jul 27, 2011

I have been in the process of re-designing my website to utilize some of the functionality and benefits of jquery. I'm building a slider set for my site, and each slide contains it's own nav box and text description of said slide. Things are working fairly well for the most part, but I'm encountering an issue with text formatting on the slides, and I figured it would be best to post my information here and try to get some assistance.My script.js file contains all of the necessary info for the slides (a code example is below):

Background images, slide text and url's

var photos = [ {
"title" : "Clouds",
"cssclass" : "cloud",
"image" : "bg_cloud.jpg",
"text" : "

A cloud is a visible mass of water droplets or frozen ice crystals suspended in the Earth's atmosphere above the surface of the Earth or other planetary body. Clouds in the Earth's atmosphere are studied in the nephology or cloud physics branch of meteorology. Two processes, possibly acting together, can lead to air becoming saturated: cooling the air or adding water vapor to the air. Generally, precipitation will fall to the surface; an exception is virga which evaporates before reaching the surface.",}];Here's what the finished product of that code looks like on the front end:Each slide in the set looks similar to this (but obviously contains different information). As the text for each slide is contained within the .js file and not within the html, is there any way to format it so that I can use things like italics, bold, etc.?

View 5 Replies View Related

Formatting Text Inside An Array?

Jul 13, 2011

I grabbed this code from Dynamic Drive. I'm trying to style it better. I've had some success, but some thing are giving me a run for my money since i don't know JS.I would actually like the text to scroll from right to left instead of up and downThe only way I can figure out how ot get the quotes inside by scroller to look like quotes is to add an insane amount of spaces (&nbps.

View 2 Replies View Related

Online Web Based Code (text) Editor?

Jun 15, 2009

Is there any good online web based code (text) editor with syntax highlighting for different languages (C,C++,PHP, etc) and auto-completion .Or, with at least one of that options (better if both)

View 1 Replies View Related

Formatting Text - Mouse Up Event Of Button

Apr 24, 2009

I have the below Java on a the mouse up event of a button in Adobe Professional 8.0. I would like to make the last part of the subject line either bold or all caps. Is there a way to do this?
var cSubLine = "500 Order for " + this.getField("CustomerName").value + " " + this.getField("Unit_Down").value;

View 4 Replies View Related

Open Post Data How To Keep Text Formatting?

Apr 19, 2011

im sure this will be pretty simple, at the moment i have some code which sends text from a textarea to a php file, the php file then stores the data into a database.the javascript post is as follows:

var text = document.getElementById(area).value;
http.open('post', 'autosave.php?text='+text);

there is a little bit more to this(just a handle response).My issue is that when the data is passed through javascript newlines and breaks disappear, so when i call the saved data it is presented as one long string with no formatting.i tried the nl2br() function and htmlspecialchars() function in the php file that the javascript passes the data to, this made no difference. I then tried to replace /n with <br /> in the javascript before passing the text variable again this made no differnce.

View 1 Replies View Related

Rich Text Editor For Formatting Code Snippets?

Apr 7, 2010

i am planning to create a blog for myself. whenever i want to post a code snippet, then i want that snippet to be neatly formatted just like how the snippets in this dream in code appears.links to free rich text editors that serves this purpose. i prefer editors created by using javascript, jquery, ajax or php(because i want to develop my blog using php)i googled and i found editors like tinymce, fckeditor, YUI editor, free richtext editor.but among all, i found YUI is serving my purpose to some extent. but remaining editors are not providing option for code formatting.(even YUI also doesn't provide directly. but to some extent it preserves that formatting..)and also i am very much interested to know what library dream in code is using for the text editor that we all members see when we post our replies or queries... i tried by going to page source

View 1 Replies View Related

MSN Online Status

Feb 2, 2005

I noticed there is an indicator to someone's MSN online status in my hotmail inbox page.

I tried to view the source of the page in order to build my online status script.

All of my attempts were failed.

View 1 Replies View Related

Getting An Old BASIC Program To Run Online

Aug 7, 2006

I have the source code to an old BASIC program that a friend of mine
would like to run online. I am a beginner at JS, but I think that it
would be a good choice for the project. My background is in C/C++ and
web development.

Any suggestions that might get me off to a good start here? I can
provide more information if needed, but I am not sure what would be
helpful. The program is 550 lines in what appears to be BASIC and is a
calendar conversion program. You give it a date and it will convert it
into one of many other date reckoning systems (Gregorian, Hebrew,
Egyptian, etc, etc).

View 10 Replies View Related

Language For Online Graphing

Jul 20, 2005

I am considering writing an online graphing utility. I plan it to be
of good quality, such that an undergraduate university student can
print it out and include it with a lab report.
Data points will be entered, having been generated by another program;
the utility will NOT accept functions for plotting--just the data
points.

As far as I know, Javascript does not provide graphing functionality.
Could somebody in this group please let me know what the best language
to use for writing this utility.

View 6 Replies View Related

JQuery :: Using In A Online Shop?

Sep 13, 2010

I have a question and i would like you to help me.I have this online shop [URL].. i am not the developer just the owner.The question is how can i present my product throught that site [URL].. (Skroutz.gr is a search engine about online shops like [URL]..If it was a simple site(html or something else) they ask the XML. The developer tells me that we will need 2 months of work and more money. Is there a simple and faster way that skroutz can track my products?

View 1 Replies View Related

Building An App For Online Communication?

Jul 8, 2009

I am very new to web development. I would like my website to have an application which allows a user to draw images which can be displayed on other users screens in real time.

An example of this is isketch.net Also on this site i would like users to be able to create accounts and join 'rooms' where they can communicate in real time (as opposed a forum message board). I am looking for something similar to isketch.net

Could somebody please tell me the type of development and programming needed. I have been quoted 1000 a month to build these capabilities but have no idea what is involved. (also may require facebook style real-time updating)

View 4 Replies View Related

How To Play Song Online?

Sep 28, 2006

I have been looking for the answer for a long time, but could not reach to any answer. I am a novice web designer, have very little knowledge on web programming. I hope someone here could help me with the following. The problem scenario is this:

I have a webpage where I have listed some classical songs so that page visitors can listen to song online. All files are in Real Audio format either with .rm or .ra extension. These individual audio files are linked with .ram files so that when visitor’s clicks on the song title, this .ram file launches RealPlayer and the clicked song starts playing. Once a song is played it stops. If user wants to hear another song, user needs to click on another song title to play that song. This is annoying for users.

However, I have seen on some websites where user can select the songs by clicking on the “Check Boxesâ€&#65533; next to each song titles and play by clicking on the “Playâ€&#65533; button. Therefore, user can select lists of their favourite songs by clicking on check box and play these together one after another. There are two other buttons also available for users: “Select Allâ€&#65533; songs and “Resetâ€&#65533;.

View 1 Replies View Related

Excellent Online Sources ?

Sep 30, 2010

Does anyone have any excellent online sources for Javascript? I'd prefer to learn online rather than by book.

View 3 Replies View Related

Play Movie Online

Dec 20, 2006

I have a video file which I wanna show at my site. Please help me out how can I show running video? I dont know if it is a right place.

View 2 Replies View Related

Online Image Editing?

Mar 5, 2009

For sites like Facebook that allow you to crop your picture/rotate etc... Is there a javascript plugin out there that one can plug into ones site to be able to achieve similar?bviously the JS script must say it to a server side script for it to be saved to disk. But how is this achieved. Is this something one can code from scratch? I am really keen using one

View 4 Replies View Related

Date Formatting

Jul 23, 2005

Is there a way to format a date to the current user's country settings?
The date I post from the Date() function (Mozilla/JavaScript) is
incomprehensible by the back-end application (ASP/VBScript).

View 2 Replies View Related

Html Formatting

Nov 21, 2006

I have a question that maybe someone can help me with?

I have a html textarea. I want to make a menu bar for it. This menu
bar should add <p<i<betc... tags to highlighted text. Plus
closing tags.

I am not the best at javascript and was hopeing someone may be able to
help me?

I have searched but haven't found anything yet. I did find "TinyMCE "
etc but I don't need most of it's functionallity.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved