Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Atulkryadav

@Atulkryadav
About
Posts
6
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Javascript print with out pop up
    A Atulkryadav

    Give whatever element u wanna print this id "printMe". Include this script in your head tag:

    var gAutoPrint = true;

    function processPrint(){

    if (document.getElementById != null){

    var html = '<HTML>\n<HEAD>\n';

    if (document.getElementsByTagName != null){

    var headTags = document.getElementsByTagName("head");

    if (headTags.length > 0) html += headTags[0].innerHTML;

    }

    html += '\n</HE' + 'AD>\n<BODY>\n';

    var printReadyElem = document.getElementById("printMe");

    if (printReadyElem != null) html += printReadyElem.innerHTML;

    else{

    alert("Error, no contents.");

    return;

    }

    html += '\n</BO' + 'DY>\n</HT' + 'ML>';

    var printWin = window.open("","processPrint");

    printWin.document.open();

    printWin.document.write(html);

    printWin.document.close();

    if (gAutoPrint) printWin.print();

    } else alert("Browser not supported.");

    }

    Call the function

    [Print](javascript:void(processPrint());)

    Atul Kumar

    JavaScript javascript tutorial

  • How to submit the below form using Javascript?
    A Atulkryadav

    With help of setTimeout('yourFunction',1000); function yourFunction{ //your logic here }

    Atul Kumar

    JavaScript javascript com tutorial question

  • learning Jquery
    A Atulkryadav

    You should have to little bit knowledge of java script and css

    Atul Kumar

    JavaScript javascript csharp asp-net question learning

  • Social Networking Component
    A Atulkryadav

    try this http://community.elgg.org/[^]

    Atul Kumar

    ASP.NET question lounge

  • dynamically build reports during runtime
    A Atulkryadav

    Can you please explain some that which type of report your client want. Thanks

    Atul Kumar

    ASP.NET sql-server csharp asp-net database com

  • JSON Parser for asp.net 2 ?
    A Atulkryadav

    with the help of these you can do using System.Runtime.Serialization; using System.Runtime.Serialization.Json; Thanks

    Atul Kumar

    ASP.NET question csharp asp-net business json
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups