Import Stylesheet

Feb 9, 2006

I hopen a new empty window from js code:
var win =
window.open("","debug","width=500,height=300,modal,dialog,resizable");
and I add some element to the new window:
win.document.write("<img src="image.gif>");
win.document.write.....

How can I add the stylesheet information of the file x.css
(how and where I must write in the new window the line:
<?xml-stylesheet href="x.css" type="text/css"?> )

View 7 Replies


ADVERTISEMENT

@import Url

May 23, 2006

Ive seen this done to include things like titles, and status bar text on sites where javascript isnt allowed.

@import url('javascript:document.title = ("Some Page Title")');

Which works fine, but I want to take it a step further:

@import url('javascript:document.write("<embed src="MY URL" width="300" height="200">")');

Thats my attempt to use it to import my flash music player. It works and it doesnt- the player imports alright, but it erases the rest of the page content! Thats not what Im going for, why does it happen? and how do I fix it?

View 3 Replies View Related

Import Some Js Code In A .js File

Jul 23, 2005

how could i import a js file in another js file???
what i want is the equivalent to:
<script type="text/javascript" src="file.js"></script>
in html

View 2 Replies View Related

How Do I Import From A PHP Array In A Javascriptarray

Feb 4, 2006

I cannot figure out how to import an array from PHP into Javascript MyPHPcode is like this

<?php
$i=0;
While ($i < $num) {
$PHPvar= (" $PHPvar " $Mystring[$i] " , ");
$i++;}?>

The ouput of $Mystring is: "string1","string2","etc"," " (the
last empty string is added later on in the function:

This is exactly what Javascript expects in an array, however I get no
output in Javascript this way. transfering data:

<INPUT TYPE= "hidden" ID= "PHP2JS" VALUE="<?php echo( $c);?> ">

javascript:

<script type="text/javascript">

var text=PHP2JS.value;
document.write(text);

myarray = new Array(text);

for etc.
</script>

When I replace the " with nothing (in the PHP part) it works in
the - document write(text) - and all data is loaded into
myarray(0) but I need the " " . does someone have a better idea?

View 1 Replies View Related

JQuery :: Import Two Different Versions?

Apr 15, 2010

I am running what is called "XpressEngine" on my website. It is a Korean CMS tool that is like Joomla and it loads jquery 1.3.2 as standard on its boards and etc.

I have developed a new design website with jquery 1.4.2 and it works fine with by it self.. but it does not when it loads a board running by XE. I guess the reason is that the websites loads two jquery. So I tried to load the jquery 1.3.2 only so that it can run both my board and the website layout, but layout is not working with jquery 1.3.2. (except, if I only import jquery 1.3.2, then the board works fine but not the layout.) I guess my code is some what requiring jquery 1.4.2.. but I am not sure why yet..

My question is, is there any way to import jquery 1.4.2 and 1.3.2 simultaneously? (I personally think its not possible though..

[Code]...

View 3 Replies View Related

Customizing Blog Import With CSS?

May 1, 2010

I am importing a Word Press blog to a web site, but it looks kind of sloppy. You can see it here : What I need to do is just present the title, and maybe the first 100 characters, then have a "read more" link. Once this link is clicked, the full article will show on the same page.

I think I might need to use a JavaScript library as well, but I know I will need some CSS. If someone could give me a general idea of how to go about this,

View 1 Replies View Related

Import A File In Flash Cs3 ?

May 17, 2010

How to import a javascript file in flash cs3

View 1 Replies View Related

Import Data From A PHP-drivenURL

Oct 17, 2010

[URL]

I was asked if I could parse the information that is found when I access this URL. I am looking to import this data into into a database using JavaScript. The code would then store the data on a mobile device.

View 2 Replies View Related

Use JS To Remove A Script Import?

Jan 17, 2011

I've got a website that uses AJAX to obtain all of the page. The site contains hundreds of pages and only about 3 or 4 of them show a map. So, in order to not have to import the google maps api for every single user when only a minority of users are ever going to make use of it, I defer the import and then include with javascript, like so:

Code:

var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.google.com/maps/api/js?sensor=false";
document.body.appendChild(script);

This seems to work nicely, however I am wondering if is possible to use a similar method to remove the import once the user navigates away from a map page. I figure it's a waste of time having all of that stuff in memory wasting space when we are unlikely to use it again. When profiling, the Google Maps API code causes both the longest load time and highest memory usage of any page on the entire website.

I've done a similar thing with styles, using an empty style tag with a name property set. I can then insert page-specific styles and remove them when the page changes. The trouble is, the script tag doesn't have a name property, or seemingly any properties that can be used to identify it other than the src. I could check against this and remove the tag, but is that actually going to remove the JS and free up memory, or will it really just remove the entry from the DOM but not release the mem?

View 1 Replies View Related

Import News Feeds From Various Web Sites?

Apr 23, 2010

I need to be able to import news feeds from various web sites.I only want to display the title and the first line or two from the source, with a link back to the source. I guessing it's JavaScript, but I really don't know where to start.

View 2 Replies View Related

Using A Json File To Import Some Content Into A Div

Dec 27, 2010

i am using a json file to import some content into a div like this:

$.getJSON('json/main_profile.json', function(data) {
$('#info_title').html(
'<h1>' + "General Information " + '</h1>'
);
});

but the problem appears when i try to replace the json file with a url, like this:

$.getJSON("http://interfaces-server.insource.local/users/145198", function(data) {
$('#info_title').html(
'<h1>' + "General Information " + '</h1>'
);
});

why works with the file but not with the link??

View 4 Replies View Related

Import List Of Words In An Array?

Jun 16, 2010

I am coding a random name generator in javascript and at the moment I have the first names and last names in two seperate arrays. I'm adding more names into the javascript itself and it gets messy after a while. When the list is populated to hundreds of names it's gonna be tough keeping track of things.

I was wondering how to have the names listed line-by-line in two text files (first name, surname) and to call the files when the user clicks the generate name button.

View 1 Replies View Related

Short Random Generator Without Having To Import Anything?

Dec 8, 2010

I need help with a code that will generate a random number or integer (from 1-9). Does anybody know of a short random generator without having to import anything?

View 1 Replies View Related

JQuery :: Minimize Import Instances On Site?

Apr 1, 2011

I am developing a site for my client in wordpress. According to clients needs I have to add 6-7 jquery instances into a site. means I need to import jquery.js file for each of JQuery effect such as menu, slider, scrooler, tabs, buttonsinto a site. Because of this site loading time is affected and I need to use noconflict() function to make jquery variable separate for each of JQuery effect. I need help to improve site loading time by minimizing importing of jquery.js file. but I need to keep all the effect as before.

View 8 Replies View Related

Can I Add Javascript To A Stylesheet?

Mar 16, 2006

I am just about ok with html. Much less so with css. I have however used a
style sheet to link most of the pages in my websitever have to use my site!!!! Code:

View 4 Replies View Related

Change Stylesheet According To OS

Sep 7, 2010

I am using @font-face tag in my website. Everything works fine in Mac, Vista and Win 7, but fonts are incredibly ugly in XP. This is because font anti-aliasing is kept at very primitive level by default. In my opinion, the best way through this problem is to make a JS to change style according to user's OS. If it is Win XP, a simple stylesheet is used, if it is not- the standard one. I am using PHP embedded in HTML (index.php, rather than index.html) everywhere, so this complicates things a little. I am trying the following script, but it does not work:

<script type="text/javascript">
<!--
var browserInfo=string;
browserInfo=navigator.appVersion;
if (browserInfo.indexOf("XP")=-1)
{
document.styleSheets[0].href="style-xp.css";
}
[Code]....

View 1 Replies View Related

JQuery :: Import Data From Excel To SQL Server Web Page Without Uploading?

Jun 23, 2010

Wantto import data from excel to SQL server from a web page, but wonder whether it is possible to do it without uploading the excel file from client's machine to server first.

View 4 Replies View Related

Import Local XML File And Create HTML Table Via JavaScript

Oct 6, 2005

I'm trying to output an HTML page from a simple XML file, but I need to offer this as a service from a website, so users can browse and find the XML file on their local hard drives, and then generate an HTML page.

I think there are some security issues with HTTP not being able to access local files (ie. C: emp.xml) because it doesn't work when I browse to a local file from the website (files on servers work fine). Is there any other way to pass an XML file from local to a website?

I'm using the following javascript to load the XML file.

var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load(filepath)

View 1 Replies View Related

Enable/disable One Alt Stylesheet, How To?

Jul 23, 2005

I have exactly one external, alternate stylesheet that I want to enable or disable by form controls, on one page only (not saved across pages).

I used:

<link rel="alternate stylesheet" id="style-compact" etc...>

<input name="view" type="radio"
onclick="document.getElementById('style-compact').disabled=false">

<input name="view" type="radio" checked="yes"
onclick="document.getElementById('style-compact').disabled=true">

Is this the best way to do it? I want to reference the alt-stylesheet by
name (or similar), not index.

It works in my Camino & Safari. In IE-Mac, I can enable the stylesheet,
but not (subsequently) disable it again -- parts of the page just
disappear.

View 1 Replies View Related

GetElementByID, Change The Stylesheet

Nov 25, 2006

I want to change the stylesheet for this page. Why the form select doesn't work?

link id="est" rel="stylesheet" type="text/css" href="est.css">

function Changue() {
var posibles = document.forms[0].XXX;
document.getElementById("est").href=posibles.options[posibles.selectedIndex].value;
}

<form>
..........

View 6 Replies View Related

Dynamically Changing A Stylesheet

Jul 20, 2005

I have a piece of javascript I need to modify. Right now it changes a stylesheet in the document between style.css and no_indent.css. These
are in the head of my document:

<link rel=stylesheet href=/style.css>
<link rel=stylesheet href=/no_indent.css>
<link rel=stylesheet href=/style.css>

What the code below does is toggle between the two depending on what link is clicked. Here are the links:

<a href=javascript:changeSheets(1)>Threaded</a>
<a href=javascript:changeSheets(2)>Flat</a>

What I want to do is have one link that will toggle between the two
stylesheets. So the page loads style.css initially. If the link is
clicked once it changes to no_indent.css. If it's clicked again it
changes back to style.css, and so on.

Can anyone let me know how to do this?

code:
----------------------------------

function changeSheets(whichSheet){
whichSheet=whichSheet-1;
if(document.styleSheets){
var c=document.styleSheets.length;
for(var i=0;i<c;i++){
if(i!=whichSheet){
document.styleSheets[i].disabled=true;
}else{
document.styleSheets[i].disabled=false;
}
}
}
}

View 2 Replies View Related

Stylesheet Selector Not Working In IE8

Jan 20, 2010

I have been using some javascript to select stylesheets (dependent upon window sizes) without problems, until IE8. I have stripped the code down to the following which seems to be where it fails in IE8.

The normal stylesheet is the same as default. Without this older versions of IE go straight to large (without javascript).

For these settings, all browsers display the default (or normal?) stylesheet without the script.

When the script is run Firefox, Opera and older versions of IE will use the default stylesheet combined with the large stylesheet. IE8 uses only the default and ignores large. It doesnt appear to matter where in the page the script is run.(it has never worked in Safari, Chrome and older versions of Opera).

View 2 Replies View Related

Access To Layers Stylesheet

Jul 14, 2002

can someone tell me quickly what the path to a layers z-index is on both ie and ns? i thought this was it for ie but can't seem to get it to work??

document.all('layername').style.z-index = 1;

View 6 Replies View Related

Stylesheet Problem With Generated Nodes

Dec 15, 2006

I'm having trouble applying a stylesheet to content I'm generating after the fact.

Here's the sample code:

View 11 Replies View Related

Detect Screen Change Stylesheet

Jul 20, 2005

I have a perl script that i use to render a html page. In that page i call out a stylesheet. If the user has a 800x600 display the fonts are really too big.

Since screen resolution is a function of the client and I have this javascript ot detect the srecc size:

function ck_res()
{
if ( (screen.width != 1024) && (screen.height != 768) )
{
alert(" This graphic is best viewed at 1024 x 768 ! ");
// use a different stylesheet
}
}

How would I go about changing the style sheet that is being called on the page?

View 7 Replies View Related

Permanently Changing Stylesheet Using Javascript

Jul 20, 2005

I would like to be able to write some code in Javascript preferably
(PHP is also all right) which allows the admin of a website to be able
to change stylesheet attributes from a GUI browser interface without
having them to change the text file themselves. (i.e., working on the
supposition that the admin is IT illiterate). Simple things like
table heading colours, backgrounds, font sizes need to be changed this
way.

The browser should then read from the changed textfile the next time
the site is refreshed and it should therefore be permanent. Is this
at all possible? If so, how do I update the textfile?

View 6 Replies View Related







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