Tagged Questions
0
votes
2answers
22 views
Show formatting in input text html
Is there anyway to show text in input text and not as hmtl. I mean:
This is</b> bold"/>
I would like to see in the text input This is bold
for the output of input text.
Is there any way to do ...
1
vote
1answer
20 views
Is there a function to stringify JSON with whitespace?
I am aware of the fact that for JSON whitespace matters. But, just for debug output, I would like to print JSON objects formatted, thus with tabs and newlines.
Is there a function in JavaScript for ...
0
votes
2answers
34 views
datetime formatting in javascript
When I generate a date with the following code
var date = new Date();
I get a date-time of the following form
Sat May 11 2013 21:54:23 GMT-0700 (PDT)
Can anyone tell me how to generate a date of ...
0
votes
0answers
26 views
Live international phone number recognition [closed]
I would like a form field which recognizes a number by country code as the number is typed, preferable using jQuery. I have tried different techniques but with very little luck.
This is EXACTLY what ...
0
votes
2answers
64 views
How to clear all column headers using DataTables
I was wondering, when updating DataTables using AJAX, how do you delete column headers left over from a previous DataTable? I have bDestroy set to true in both of my functions to draw the table, ...
0
votes
1answer
35 views
Remove Formatting on Chrome Extension Generated Content
What is a short, quick, and efficient way to remove any formatting from a website's stylesheet on any dynamically generated content from my Chrome Extension?
For example, if I use the code below in ...
1
vote
1answer
55 views
Consolidate stacked DOM formatting elements - contenteditable DIV
I have a contenteditable DIV which is linked/synced-back to a textarea.
The contenteditable DIV is a free-for-all sandbox which will create formatting elements etc as they are being invoked. ...
0
votes
2answers
47 views
toLocaleString() not supported in all browsers? [duplicate]
i've this simple function:
Chrome, Firefox, IE:
Number(1000000).toLocaleString()
"1 000 000" // in french system, the space is the separator instead of the comma
Opera, Maxthon:
...
0
votes
1answer
40 views
Remove extra br tags with JS
I have a post which contains extra line breaks and want to limit the post to only show one linebreak. I thought this css might work..
br+br{display:none}
but since the text is not wrapped in its ...
0
votes
2answers
115 views
What does the “.000Z” of “yyyy-mm-ddT00:00:00.000Z” mean? [closed]
I've gotten a response from one application with the following date & time format:
yyyy-mm-ddT00:00:00.000Z
I need date and time for a report I have to present. What does the .000Z mean? ...
0
votes
1answer
41 views
how to print large array fully in chrome console?
I want to print an array (uniqueNames) in the Chrome Console:
> console.log(uniqueNames)
but the problem I come across is that after
> ["Theodor", "Albertus", /* 95 other elements */ ...
0
votes
0answers
26 views
Widget to display json with code folding?
I know I can format json easily with JSON.stringify(str, undefined, 4) but does anyone know a widget that will display json with code-folding?
This is for a spike I'm doing on a Jasmine port of the ...
1
vote
2answers
102 views
Converting JSON document to Google Chart format
I'm fairly new to Javascript and my situation is this:
I'm using Google Charts to visualize some data and the data is contained in Elasticsearch.
I'm querying the data with an Ajax command however ...
2
votes
0answers
58 views
How to keep braces on single line [closed]
When I write JavaScript in NetBeans, I don't want my braces to go on newlines. I want my code to look like this:
var myJSON = JSON.stringify({prop1: v1, prop2: v2});
Not, this:
var myJSON = ...
0
votes
1answer
27 views
gridlines in highstocks for each category
I'm trying to get a gridline for each category but in my code I set up the categories instead of using the x datetime coordinates.
How would I do this with highstocks?
I tried this with no luck
...
0
votes
1answer
126 views
aligning datalabel to top of column highcharts
I'm trying to get my datalabel inside the column to the top if the column is going up or to the bottom if the column is going down right now with this code its aligned to the left in the middle.
...
3
votes
2answers
75 views
jquery date formatting, different for each browser?
I am calculating the date using the number of seconds since epoch at UTC.
here is how I am currently doing it:
var LastUpdatedTime = data.LastUpdated;
myDate = new Date(1000 * LastUpdatedTime); ...
0
votes
1answer
188 views
How to label Highcharts x-axis depending on number of points
I want to get the length of the xAxis array for the visible series so that my x-axis can have a relative label. Think 'x Days Ago'.
When all my lines had 31 points, I was fine with
xAxis: {
...
0
votes
2answers
83 views
Equivalent of PHP's stripcslashes
I'm working on a JavaScript program that's parsing data from an API. Part of the data is coming back in the format '\t' etc and I need to parse it as tab (in this example) not '\t'.
In PHP, there's ...
1
vote
1answer
57 views
Javascript is not functioning properly, please have a quick look to debug
I have a bit of Javascript which exists in a PHP script. Here it is:
// start of JS script
print("<script type=\"text/javascript\"> <!--\n");
print("function storeData()");
print("{");
...
0
votes
2answers
699 views
HTML and Javascript button to make text in a textarea bold and unbold, Possibly using JQuery?
I currently have a button that makes the text in a textarea bold it uses
<a href="#" class="stylingButtons" type="button" onclick="boldTextArea()" value="Bold Text"}>
<img alt='Bold ...
1
vote
1answer
167 views
TinyMCE - Insert combobox and selected value with formatting
I'm trying to figure out TinyMCE. And I've looked at the examples, but it seems the examples use different ways of achieving the tasks. And I'm having a hard time putting it together to get what I ...
1
vote
3answers
83 views
regular expression javascript numbers and letters
I can't for the life of me seem to figure out how to set a regular expression of an element with the formatting.
1d 5h 6m 12s
And also allow it to have any variation of those such as
1d
1d 1h
...
0
votes
1answer
70 views
How to format JSON: Array of objects, or document containing elements with objects?
So I'm currently trying to develop a JSON document which will be easiest to iterate through and access objects from. I will be using underscore, so accessing objects isn't necessarily difficult, but ...
-1
votes
1answer
78 views
xml not providing proper nodes
Hello and thanks in advance.
I have been stuck for a few days now on an issue of loading XML data and parsing into an assoc array. I finally decided to just embed the XML configuration data right ...
0
votes
1answer
41 views
tinyMCE won't remove underline formating
in our app we have a tinyMCE text editor and have it inserting tags for underline. Recently, the app encountered a bug where we could select text, underline it, and save it just fine. However ...
0
votes
0answers
138 views
Copy and paste without any HTML formatting
I have a webpage that has text in a tabular display with all the usual formatting for size color etc. I am trying to make it more convenient for my user to copy paste into an email/Word Doc or ...
4
votes
1answer
546 views
Kendo UI Currency Formating
How do I format a grid cell to use £s instead of the default $s?
I have looked high and low but there is no answer.
I have:
{field: "price", title: "Price (£)", width: 95, format: "{0:c}"},
Which ...
0
votes
0answers
77 views
Ping YouTube metadata to show views and published date in WordPress
I recently setup a website that is using WordPress and it will include embedded videos from YouTube. One of the goals were to show the video's views and published date. It was not an easy task for me ...
0
votes
0answers
57 views
Programming, Mathematics, Chemistry, and Physics Character Formatting Libraries [closed]
I'm looking for a good platform that would allow users of a site to post comments with formatting for programming languages and formulas. I know that there's gist by github for syntax highlighting and ...
-2
votes
1answer
41 views
Tools to properly format code (or UN/DE-minify code) [closed]
Are there any tools that can unminify a huge code file made up of 1 line? I need to be able to read it and work with it, but the fool gave me a 1 line file with 160000 characters! I've tried Visual ...
1
vote
2answers
54 views
Is there a way to apply a bold weight to text before a set character, normal weight after it (or any type of css, really) without manual formatting?
I'm working with an e-commerce client in a CMS environment (mybigcommerce.com) and the titles could use a lot of cleaning up to make them more readable, e.g.:
5/16" x 12" ExcelMate DrIll Bit and ...
0
votes
2answers
198 views
Preserve leading zero in csv file using javascript
I am downloading a csv using the following code.
<a download="somedata.csv" id='x'>Download CSV</a>
<script>
var csv = '01'; //prints 1 in the cell, truncating leading zero
...
0
votes
1answer
185 views
Math.round() to control decimal places not working
I am trying to round to two decimal places in my code below, however, in many cases the Math Round method to control the number of decimal places does not work for me.
var newKitAmount = 1;
...
0
votes
1answer
549 views
DatePicker format does not work if set by input element
I have observable objects that update the input values in real time. The problem is that the Kendo DatePicker does not know when the input value has been updated so none of the formatting takes place. ...
0
votes
0answers
54 views
Tutorials or tools for formatting text box input? [closed]
I'm writing an app that I want to have something like the box in Tumblr for tags that fancies up the input you give it as you write it in:
Can anyone recommend some good resources, tutorials, or ...
3
votes
2answers
117 views
Javascript equivalent to python's .format()
I would like a javascript function that mimics the python .format() function that works like
.format(*args, **kwargs)
A previous question gives a possible (but not complete) solution for ...
1
vote
1answer
154 views
Eclipse Formatting breaks EL expressions inside JavaScript script
Wow, the title is quite a mouth full. Let me explain. I have a .jsp page, on this page is a JavaScript <script ..> element and inside the JavaScript there is an EL expression (${..}). The code ...
0
votes
1answer
82 views
Indenting Syntax Highlighter when starting with a php echo
I am using Alex Gorbatchev's Syntax Highlighter to output some code, but I'm getting an issue where it's not retaining the initial indentation if I start the line with a php echo. For example where I ...
0
votes
2answers
85 views
Javascript value formatting. How do I get my output to us a U.S. currency format without the $ sign?
I have a form that caculates the sum of amounts entered. I wanted to know how I can make the output go from somthing like:
97.231345
to
97.23
I'm trying to use US currency formatting but ...
0
votes
1answer
72 views
Javascript - Write out date depending on location [duplicate]
Possible Duplicate:
How do I display a date/time in the user’s locale format and time offset?
We write things differently, and date is one of these things.
I would like to display A date ...
0
votes
3answers
83 views
CodeIgniter function breaks with Javascript
I'm using CodeIgniter form helper, and this is what it does:
Uncaught SyntaxError: Unexpected token ILLEGAL
The code:
jQuery('#window-1').append('<?= form_dropdown('hfdata', $hf_arr, ...
0
votes
2answers
127 views
How to format text in a textarea
I am adding some text by default to a textarea
%textarea.email_copy
Hi <awesome friend>,
I am using this site called XXXX, and you should check it out. It is for smart and thoughtful ...
0
votes
2answers
93 views
Can you make newline characters \n display as breaks <br />?
I'm trying to display emails with IMAP. When the email is text though, the newlines \n don't display properly. I'd rather not convert them to breaks < br /> because if the user wanted to reply to ...
0
votes
4answers
83 views
String formatting with commas in javascript
Let's I have parts of user's address that should be formatted in single string.
Address components are
Street
City
Phone
State
Zip
and should be formatted to string street city, phone, ...
3
votes
7answers
231 views
Format a number to time like hh:mm
I have an iput field:
<input type="text" name="time" class="time" value="3" />
I need that value to be like 03:00
More examples of what I need:
1 = 01:00
12 = 12:00
12:2 = 12:20
2:2 = 02:20
...
3
votes
1answer
322 views
Change axis scale with LogAxisRenderer
I plot data with jqPlot using logAxisRenderer to have two logarithmic axes.
Everything is fine except of two problems:
jqPlot creates a lot of empty space between 0 and 1.
There are two zeros on ...
1
vote
3answers
132 views
Javascript formating for OnClick function
EDIT: Here is the entire chunck of what is in the table
Hopefully this will help, now the code that worked before for the alert is no longer working. Does this have to do with it being in a table?
...
1
vote
3answers
149 views
Javascript with xlt formating error
I'm using javascript to pad numbers in my xslt file. but when debugging I get an error saying.
Extension function parameters or return values which have Clr type
'ConcatString' are not ...
2
votes
2answers
156 views
How can I can use jQuery to add line numbers to a code block? [closed]
If I have the following HTML markup:
<div class="code">
<pre>
int i = 1;
int j = 2;
</pre>
</div>
I'd like to use jQuery to make it into something like this:
...



